/* ------------------------------ ND Style.css ------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root {
    --nd-font: "Inter", sans-serif;
    --nd-black: #000000;
    --nd-white: #ffffff;
    --nd-orange: #f36f32;
    --nd-blue: #3f50a3;
    --nd-dark: #4f5052;
    --nd-light: #f4f5f6;
    /* Design is based on 1400px screen */
    --nd-container: 1240px;
    --nd-container-wide: 1320px;
    --nd-gutter: clamp(20px, 4vw, 60px);
}


/* ------------------------------
   ND Font Override
------------------------------ */

.nd-page,
.nd-page * {
    font-family: var(--nd-font);
}

.nd-page h1,
.nd-page h2,
.nd-page h3,
.nd-page h4,
.nd-page h5,
.nd-page h6,
.nd-page p,
.nd-page a,
.nd-page span,
.nd-page button,
.nd-page input,
.nd-page select,
.nd-page textarea,
.nd-page li {
    font-family: var(--nd-font);
}

body.page-template-nd-template {
    width: 100%;
    overflow-x: hidden !important;
}

@supports (-webkit-touch-callout: none) {
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    #page,
    .site,
    .site-content,
    #content,
    .content-area,
    main,
    .nd-page {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}


/* ------------------------------
   Safari/iOS menu horizontal scroll fix
------------------------------ */

.site-header .sub-menu,
.main-navigation .sub-menu,
.nav-menu .sub-menu,
.menu .sub-menu {
    /* left: 0 !important; */
    /* right: auto !important; */
    transform: translateX(-9999px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}


/* Show submenu on hover/focus */

.site-header li:hover>.sub-menu,
.site-header li:focus-within>.sub-menu,
.main-navigation li:hover>.sub-menu,
.main-navigation li:focus-within>.sub-menu,
.nav-menu li:hover>.sub-menu,
.nav-menu li:focus-within>.sub-menu,
.menu li:hover>.sub-menu,
.menu li:focus-within>.sub-menu {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.nd-page {
    width: 100%;
    overflow: hidden;
    font-family: var(--nd-font);
    color: var(--nd-black);
    background: var(--nd-white);
}

.nd-page *,
.nd-page *::before,
.nd-page *::after {
    box-sizing: border-box;
}

.nd-page img {
    width: 100%;
    display: block;
}

.white-bg {
    background: var(--nd-white) !important;
}


/* Main container */

.nd-container {
    width: calc(100% - (var(--nd-gutter) * 2));
    max-width: var(--nd-container);
    margin-left: auto;
    margin-right: auto;
}


/* Wider container for hero/image-heavy sections */

.nd-container-wide {
    width: calc(100% - (var(--nd-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
}


/* Full-width section */

.nd-section {
    position: relative;
    padding: clamp(50px, 7vw, 100px) 0;
}

.nd-section-sm {
    position: relative;
    padding: clamp(35px, 5vw, 70px) 0;
}

.nd-section-lg {
    position: relative;
    padding: clamp(70px, 9vw, 140px) 0;
}


/* Basic typography */

.nd-title {
    font-size: clamp(36px, 4.8vw, 72px);
    line-height: 1;
    font-weight: 700;
    margin: 0 0 18px;
}

.nd-heading {
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 16px;
}

.nd-text {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.4;
    font-weight: 300;
    margin: 0 0 18px;
}

.nd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 15px 24px;
    border-radius: 99px;
    background: var(--nd-black);
    color: var(--nd-white) !important;
    font-size: 14px;
    line-height: 1;
    text-decoration: none !important;
    border: 0;
    transition: all 0.25s ease;
    text-align: center;
}

.nd-btn:hover {
    background: var(--nd-orange);
    color: var(--nd-white) !important;
}

.nd-btn.m-c {
    background: var(--nd-orange);
    color: var(--nd-white) !important;
}

.nd-btn.m-c:hover {
    background: var(--nd-black);
    color: var(--nd-white) !important;
}

.m-btns-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rounded-12 {
    border-radius: 12px;
}


/* ------------------------------
   ND Scroll Animations
------------------------------ */

.nd-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.nd-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nd-fade-up {
    transform: translateY(30px);
}

.nd-fade-down {
    transform: translateY(-30px);
}

.nd-fade-left {
    transform: translateX(-35px);
}

.nd-fade-right {
    transform: translateX(35px);
}

.nd-zoom-in {
    transform: scale(0.94);
}

.nd-animate.is-visible.nd-fade-up,
.nd-animate.is-visible.nd-fade-down,
.nd-animate.is-visible.nd-fade-left,
.nd-animate.is-visible.nd-fade-right,
.nd-animate.is-visible.nd-zoom-in {
    transform: translate(0, 0) scale(1);
}


/* Delay helpers */

.nd-delay-1 {
    transition-delay: 0.1s;
}

.nd-delay-2 {
    transition-delay: 0.2s;
}

.nd-delay-3 {
    transition-delay: 0.3s;
}

.nd-delay-4 {
    transition-delay: 0.4s;
}


/* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {
    .nd-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.page-template-nd-template .banner-section {
    display: none;
}

.page-template-nd-template .site-content {
    margin: unset;
}

.nd-sec-f-footer {
    position: relative;
    height: 60px;
}

.nd-footer__curve {
    position: absolute;
    left: 50%;
    top: 0px;
    width: 160vw;
    height: 500px;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0;
    background: #57585a;
    z-index: 1;
    pointer-events: none;
}

.page-template-nd-template footer {
    background: #57585a;
    border-color: #57585a;
}

.page-template-nd-template footer h4,
.page-template-nd-template footer ul li a,
.page-template-nd-template footer .footer-bottom p,
.page-template-nd-template footer .footer-bottom a,
.page-template-nd-template footer h4 a {
    color: #fff;
}


/* -------------------------------------- Encompass Page -------------------------------------- */


/* ------------------------------
   Encompass Hero
------------------------------ */

.nd-enc-hero {
    position: relative;
    min-height: clamp(520px, 49vw, 945px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--nd-white);
}

.nd-enc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.nd-enc-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 2;
}

.nd-enc-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.nd-enc-hero .nd-container-wide {
    position: relative;
    z-index: 3;
}

.nd-enc-hero__content {
    padding-bottom: clamp(45px, 4vw, 85px);
}

.nd-enc-hero-card {
    width: min(100%, 31.8vw, 445px);
    margin-left: clamp(0px, 4.0vw, 90px);
    padding: clamp(18px, 2.1vw, 28px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(2px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.nd-skill-builders-page .nd-enc-hero-card {
    width: min(100%, 41vw, 500px);
}

.nd-enc-hero-card__logo {
    margin-bottom: 26px;
}

.nd-enc-hero-card__logo img {
    width: 100%;
    max-width: 380px;
}

.nd-enc-hero-card__meta {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
    border-top: 1px solid var(--nd-black);
    border-bottom: 1px solid var(--nd-black);
    font-size: clamp(12px, 0.9vw, 15px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--nd-black);
    text-transform: uppercase;
}

.nd-enc-hero-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding-right: 12px;
    white-space: nowrap;
}

.nd-enc-hero-card__meta span+span {
    padding-left: 12px;
    padding-right: unset;
    border-left: 1px solid var(--nd-black);
}

.nd-enc-hero-card__title {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(18px, 1.5vw, 28px);
    font-weight: 400;
    line-height: 1.2;
}


/* ------------------------------
   Encompass Classroom Video Hero
------------------------------ */

.nd-enc-video-hero {
    position: relative;
    min-height: clamp(560px, 40vw, 770px);
    overflow: hidden;
    display: flex;
    align-items: end;
    background: var(--nd-black);
}

.nd-enc-video-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.nd-enc-video-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.18) 100%);
}

.nd-enc-video-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.nd-enc-video-hero .nd-container {
    position: relative;
    z-index: 3;
}

.nd-enc-video-hero__content {
    max-width: 720px;
    color: var(--nd-white);
    padding-bottom: 80px;
}

.nd-enc-hero-card.pb-c {
    background: rgb(255 255 255 / 65%);
    margin-bottom: clamp(45px, 4vw, 80px);
}

.nd-enc-video-hero__title {
    margin: 0 0 22px;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(34px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.nd-enc-video-hero__text {
    max-width: 650px;
}

.nd-enc-video-hero__text p {
    margin: 0 0 16px;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(15px, 1.12vw, 18px);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.nd-enc-video-hero__text p:last-child {
    margin-bottom: 0;
}

@media(max-width:991px) {
    .nd-enc-video-hero {
        min-height: 560px;
    }
    .nd-enc-video-hero__bg::after {
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.64) 100%);
    }
    .nd-enc-video-hero__content {
        max-width: 640px;
        padding-bottom: 50px;
    }
    .nd-enc-video-hero__title br {
        display: none;
    }
}

@media(max-width:575px) {
    .nd-enc-video-hero {
        min-height: 575px;
        align-items: flex-end;
        padding: 55px 0;
    }
    .nd-enc-video-hero__content {
        padding-bottom: unset;
    }
    .nd-enc-video-hero__title {
        font-size: 30px;
    }
    .nd-enc-video-hero__text p {
        font-size: 15px;
        margin: 0 0 8px;
    }
}

@media screen and (max-width: 379px) {
    .nd-enc-video-hero {
        min-height: 475px;
        padding: 45px 0;
    }
    .nd-enc-video-hero__title {
        font-size: 28px;
    }
    .nd-enc-video-hero__text p {
        font-size: 14px;
        margin: 0 0 5px;
    }
}


/* ------------------------------
   Encompass Intro Section
------------------------------ */

.nd-enc-intro {
    background: var(--nd-white);
    padding-top: clamp(35px, 2.3vw, 45px);
    padding-bottom: clamp(35px, 2.3vw, 45px);
}


/* .nd-enc-intro__row {
    --bs-gutter-x: clamp(45px, 7vw, 105px);
} */

.nd-enc-intro__content {
    padding-left: 48px;
}

.nd-enc-intro__title {
    margin: 0 0 18px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-enc-intro__text {
    margin: 0 0 24px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.nd-enc-intro__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.nd-enc-intro__tags span {
    display: inline-flex;
    align-items: center;
    padding: 7px;
    border-radius: 9px;
    background: #e9e9e9;
    color: #4d4d4d;
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.nd-enc-intro__media img {
    width: 100%;
    min-height: clamp(340px, 33.2vw, 525px);
    border-radius: 12px;
    overflow: hidden;
    object-fit: cover;
    object-position: center center;
}


/* ------------------------------
   Encompass Video Section
------------------------------ */

.nd-enc-video-section {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 7.5vw, 110px) 0;
    background: #4650a1;
}

.nd-enc-video-section.young-citizens-color {
    background: #0073af;
}

.nd-enc-video-section.navigate-color {
    background: #92278f;
}

.nd-enc-video-section.skill-color {
    background: #fc8833;
}

.nd-enc-video-section.active-classroom-color {
    background: #05b3b6;
}

.nd-enc-video-section.atlas-assistant-color {
    background: #87b685;
}

.nd-secondary-mapping-page .nd-enc-video-section {
    background: #8050a8;
}

.nd-enc-video-section.nd-enc-video-section--investigate {
    background: #92278f;
}

.nd-enc-video-section__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.nd-enc-video-section__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

.nd-enc-video-section .nd-container {
    position: relative;
    z-index: 2;
}

.nd-enc-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(45px, 5vw, 70px);
}

.nd-enc-video-grid.grid-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.nd-enc-video-title {
    margin: 0 0 24px;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-enc-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #cfcfcf;
}

.nd-enc-video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ------------------------------
   Encompass Map Banner
------------------------------ */

.nd-enc-map-banner {
    position: relative;
    min-height: clamp(400px, 53vw, 1100px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--nd-white);
}

.nd-enc-map-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.nd-enc-map-banner__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.85) 100%);
}

.nd-enc-map-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.nd-enc-map-banner .nd-container {
    position: relative;
    z-index: 3;
}

.nd-enc-map-banner__content {
    padding-bottom: clamp(30px, 5vw, 86px);
}

.nd-enc-map-banner__title {
    max-width: 880px;
    margin: 0;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(42px, 4.1vw, 70px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
}


/* ------------------------------
   Encompass Classroom Section
------------------------------ */

.nd-enc-classroom {
    position: relative;
    overflow: hidden;
    background: #f6f7f7;
    padding: 40px 0;
}

.nd-enc-classroom__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(35px, 5vw, 100px);
}

.nd-enc-classroom__media {
    position: relative;
}

.nd-enc-classroom__img {
    width: 100%;
    max-width: 650px;
    height: auto;
}

.nd-enc-classroom__content {
    max-width: 520px;
}

.nd-enc-classroom__title {
    margin: 0 0 18px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.nd-enc-classroom__desc {
    margin-bottom: 22px;
}

.nd-enc-classroom__desc p {
    margin: 0 0 16px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(15px, 1.12vw, 18px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.nd-enc-classroom__desc p:last-child {
    margin-bottom: 0;
}

.nd-enc-classroom__btn {
    min-height: 42px;
    padding-inline: 24px;
}


/* ------------------------------
   Encompass See What's Inside
------------------------------ */

.nd-enc-inside {
    background: var(--nd-white);
    padding: clamp(45px, 5.7vw, 80px) 0;
}

.nd-enc-inside__head {
    margin-bottom: 22px;
}

.nd-enc-inside__title {
    margin: 0 0 8px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.nd-enc-inside__desc {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 300;
    line-height: 1.4;
}

.nd-enc-accordion {
    width: 100%;
}

.nd-enc-accordion__item {
    border: 1px solid #000;
    border-radius: 4px;
    background: var(--nd-white);
    overflow: hidden;
}

.nd-enc-accordion__item+.nd-enc-accordion__item {
    margin-top: 8px;
}

.nd-page .nd-enc-accordion__trigger {
    width: 100%;
    height: auto;
    min-height: 41px;
    max-height: 50px;
    padding: 15px 20px;
    border: 0;
    border-radius: 4px;
    background: var(--nd-white);
    color: var(--nd-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--nd-font);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    text-shadow: none;
}

.nd-page .nd-enc-accordion__trigger:hover,
.nd-page .nd-enc-accordion__trigger:focus,
.nd-page .nd-enc-accordion__trigger:active {
    background: var(--nd-white) !important;
    color: var(--nd-black) !important;
    box-shadow: none !important;
}

.nd-enc-accordion__item:not(.is-active) {
    border-color: #b9b9b9;
}

.nd-enc-accordion__item:not(.is-active) .nd-enc-accordion__trigger {
    height: auto;
    min-height: 42px;
    max-height: 50px;
}

.nd-enc-accordion__icon {
    position: relative;
    width: 14px;
    height: -webkit-fill-available;
    flex: 0 0 14px;
}

.nd-enc-accordion__icon::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--nd-black);
    border-bottom: 1.5px solid var(--nd-black);
    transform: rotate(45deg);
    transition: transform 0.25s ease, top 0.25s ease;
}

.nd-enc-accordion__item.is-active .nd-enc-accordion__icon::before {
    top: 7px;
    transform: rotate(225deg);
}

.nd-enc-accordion__panel {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: height 0.45s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.nd-enc-accordion__item.is-active .nd-enc-accordion__panel {
    opacity: 1;
    visibility: visible;
}

.nd-enc-accordion__panel-inner {
    padding: clamp(25px, 3.2vw, 45px) clamp(15px, 2.1vw, 30px);
}

.nd-enc-inside-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(30px, 5vw, 125px);
    row-gap: clamp(20px, 5vw, 58px);
}

.nd-enc-inside-product {
    display: grid;
    grid-template-columns: minmax(130px, 280px) 1fr;
    align-items: center;
    gap: 20px;
    color: var(--nd-black) !important;
    text-decoration: none !important;
    min-height: 170px;
    transition: transform 0.28s ease;
}

.nd-enc-inside-product:hover {
    transform: translateY(-5px);
}

.nd-enc-inside-product__image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-enc-inside-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
}

.nd-enc-inside-product:hover .nd-enc-inside-product__image img {
    transform: scale(1.05);
}

.nd-enc-inside-product__content h3 {
    margin: 0 0 5px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 500;
    line-height: 1.2;
}

.nd-enc-inside-product__content p {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 300;
    line-height: 1.4;
}

.nd-enc-inside__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(28px, 4vw, 46px);
}

.nd-enc-inside-product {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nd-enc-accordion__item.is-active .nd-enc-inside-product {
    opacity: 1;
    transform: translateY(0);
}

.nd-enc-accordion__item.is-active .nd-enc-inside-product:nth-child(1) {
    transition-delay: 0.08s;
}

.nd-enc-accordion__item.is-active .nd-enc-inside-product:nth-child(2) {
    transition-delay: 0.14s;
}

.nd-enc-accordion__item.is-active .nd-enc-inside-product:nth-child(3) {
    transition-delay: 0.2s;
}

.nd-enc-accordion__item.is-active .nd-enc-inside-product:nth-child(4) {
    transition-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
    .nd-enc-accordion__panel,
    .nd-enc-inside-product {
        transition: none;
    }
}


/* ------------------------------
   Encompass See What's Inside - V2
------------------------------ */

.nd-skill-builders-page .nd-enc-inside-product {
    display: block;
    min-height: auto;
}

.nd-skill-builders-page .nd-enc-inside-product__image {
    width: 100%;
    height: 100%;
    max-height: 250px;
}

.nd-skill-builders-page .nd-sb-lightbox-trigger {
    cursor: zoom-in;
}

.nd-sb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
}

.nd-sb-lightbox.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nd-sb-lightbox__inner {
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
}

.nd-sb-lightbox__img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.nd-sb-lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 30px;
    line-height: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nd-sb-lightbox-open {
    overflow: hidden;
}


/* --------------------------------
Skill Builders - See Behind the Screen V2
--------------------------------- */

.nd-skill-builders-inside .nd-sb-inside-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 22px 28px;
    align-items: stretch;
}

.nd-skill-builders-inside .nd-sb-inside-card--image {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}

.nd-skill-builders-inside .nd-sb-inside-card--text {
    grid-column: 2;
}

.nd-skill-builders-inside .nd-sb-inside-card__image {
    width: 100%;
    height: 100%;
    min-height: 390px;
}

.nd-skill-builders-inside .nd-sb-inside-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nd-skill-builders-inside .nd-sb-inside-card__image.img-contain img {
    object-fit: contain;
    filter: unset;
}


/* Lightbox */

.nd-sb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
}

.nd-sb-lightbox.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nd-sb-lightbox__inner {
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
}

.nd-sb-lightbox__img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}


/* Responsive */

@media (max-width: 991px) {
    .nd-skill-builders-inside .nd-sb-inside-layout {
        grid-template-columns: 1fr;
    }
    .nd-skill-builders-inside .nd-sb-inside-card--image,
    .nd-skill-builders-inside .nd-sb-inside-card--text {
        grid-column: auto;
        grid-row: auto;
    }
    .nd-skill-builders-inside .nd-sb-inside-card__image {
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .nd-skill-builders-inside .nd-sb-inside-card__image {
        min-height: 240px;
    }
    .nd-sb-lightbox {
        padding: 18px;
    }
    .nd-sb-lightbox__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
}


/* ------------------------------
   Encompass State Edition
------------------------------ */

.nd-state-edition {
    position: relative;
    background: #ffffff;
    padding: 50px 0;
    z-index: 1;
}

.nd-state-edition__bg {
    position: absolute;
    inset: 50px 0 45px;
    background: #57585a;
    z-index: 0;
}

.nd-state-edition.inset-0 .nd-state-edition__bg {
    inset: 0;
}

.nd-state-edition .nd-container {
    position: relative;
    z-index: 1;
}

.nd-state-edition__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    align-items: center;
    gap: clamp(20px, 3.5vw, 50px);
}

.nd-state-edition__grid.no-grid {
    display: block;
}

.nd-state-edition__grid.no-grid.center {
    text-align: center;
}

.nd-state-edition__grid.no-grid.center .m-btns-wrap {
    justify-content: center;
}

.nd-state-edition__content {
    color: #ffffff;
}

.nd-state-edition__title {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.nd-state-edition__text {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--nd-font);
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.nd-state-edition__select-wrap {
    position: relative;
    max-width: 445px;
    margin-bottom: 18px;
}

.nd-state-edition__select-wrap::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 1.8px solid #111111;
    border-bottom: 1.8px solid #111111;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.nd-state-edition__select {
    width: 100%;
    height: 64px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #2b2b2b;
    border-radius: 3px;
    background: #ffffff;
    color: #111111;
    font-family: var(--nd-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    padding: 0 56px 0 16px;
    cursor: pointer;
    outline: none;
}

.nd-state-edition__select option {
    cursor: pointer;
}

.nd-state-edition__visual {
    position: relative;
    min-height: 560px;
}

.nd-state-edition__book {
    position: absolute;
}

.nd-state-edition__book img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.28));
}

.nd-state-edition__book--back {
    top: -46px;
    right: 0;
    width: min(68%, 360px);
    z-index: 1;
}

.nd-state-edition__book--front {
    left: 0;
    top: 135px;
    width: min(74%, 370px);
    z-index: 2;
}


/* ------------------------------
   Encompass Final CTA
------------------------------ */

.nd-final-cta {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.nd-final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.nd-final-cta__title {
    margin: 0 0 18px;
    color: #000000;
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.nd-final-cta__text {
    margin: 0 auto 32px;
    color: #000000;
    font-family: var(--nd-font);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.nd-final-cta__link {
    color: #ff6f4f;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.25s ease;
}

.nd-final-cta__link:visited {
    color: #ff6f4f;
}

.nd-final-cta__link:hover {
    color: #e85738;
}

.nd-final-cta__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: clamp(70px, 8vw, 130px);
    z-index: 1;
    line-height: 0;
}

.nd-final-cta__wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.nd-final-cta__wave path {
    fill: #565656;
}

.nd-final-cta__img {
    max-width: 215px;
    margin: 0 auto 50px;
}


/* -------------------------------------- Elementary Program Page -------------------------------------- */


/* ------------------------------
   Elementary Hero
------------------------------ */

.nd-elem-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    align-content: end;
    background: var(--nd-black);
}

.nd-elem-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.nd-elem-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.nd-elem-hero__shape {
    position: absolute;
    left: -1020px;
    top: -34px;
    z-index: 2;
    width: 1900px;
    height: 1900px;
    border-radius: 50%;
    background: #eb6431e6;
    pointer-events: none;
}

.nd-elem-hero__shape::after {
    content: "";
    position: absolute;
    right: -55px;
    top: 0px;
    z-index: 3;
    width: 2000px;
    height: 1900px;
    border-radius: 50%;
    background: #eb6331b8;
    pointer-events: none;
}

.nd-elem-hero .nd-container-wide {
    position: relative;
    z-index: 3;
}

.nd-elem-hero__content {
    max-width: 540px;
    margin-left: 100px;
    margin-bottom: 200px;
    color: var(--nd-white);
}

.nd-elem-hero__eyebrow {
    margin: 0 0 8px;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(20px, 1.65vw, 28px);
    font-weight: 300;
    line-height: 1.2;
}

.nd-elem-hero__title {
    max-width: 520px;
    margin-bottom: 0;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(36px, 3.3vw, 54px);
    line-height: 1.2;
}

.nd-elem-hero__content.v2 .nd-elem-hero__title {
    font-size: clamp(28px, 3vw, 46px);
    margin-bottom: 10px;
}


/* ------------------------------
   Elementary Intro Text
------------------------------ */

.nd-elem-intro {
    background: var(--nd-white);
    text-align: center;
    padding: 45px 0;
}

.nd-elem-intro__text {
    margin: 0 auto;
    color: var(--nd-black);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.04em;
}


/* ------------------------------
   Elementary Programs Cards
------------------------------ */

.nd-elem-programs {
    position: relative;
    background: #f1f2f3;
    padding: 0 0 175px;
    margin-top: 40px;
    z-index: 2;
}

.nd-elem-programs__curve {
    position: absolute;
    left: 50%;
    top: -115px;
    width: 145vw;
    height: 500px;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0;
    background: #f1f2f3;
    z-index: 1;
    pointer-events: none;
}

.nd-elem-programs .nd-container {
    position: relative;
    z-index: 2;
}

.nd-elem-programs__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 5vw, 72px);
}

.nd-elem-program-card {
    overflow: hidden;
    border-radius: 10px;
    background: var(--nd-white);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    text-decoration: unset;
}

.nd-elem-program-card:hover {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
    text-decoration: unset;
}

.nd-elem-program-card.is-visible:hover {
    transform: translateY(-6px) !important;
    transition: transform 0.3s ease;
}

.nd-elem-program-card__media {
    width: 100%;
    height: clamp(200px, 20vw, 280px);
    background: #cfcfcf;
    overflow: hidden;
}

.nd-elem-program-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.nd-elem-program-card:hover .nd-elem-program-card__media img {
    transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
    .nd-elem-program-card,
    .nd-elem-program-card__media img {
        transition: none;
    }
    .nd-elem-program-card:hover,
    .nd-elem-program-card:hover .nd-elem-program-card__media img {
        transform: none;
    }
}

.nd-elem-program-card__body {
    padding: clamp(20px, 3vw, 42px) clamp(15px, 3vw, 48px);
}

.nd-elem-program-card__logo {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 20px;
}

.nd-elem-program-card__logo--young {
    max-width: 370px;
}

.nd-elem-program-card__logo--encompass {
    max-width: 340px;
}

.nd-elem-program-card__text {
    margin: 0 0 14px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.nd-elem-program-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.nd-elem-program-card__tags span {
    display: inline-flex;
    align-items: center;
    padding: 7px 8px;
    border-radius: 8px;
    background: #e9e9e9;
    color: #4d4d4d;
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.nd-page.nd-elementary-page .nd-sec-f-footer {
    background: #dddddd;
}


/* --------------------------------
    Elementary Additional Products
--------------------------------- */

.nd-elem-products {
    position: relative;
    background: #dddddd;
    padding: 0 0 100px;
    margin-top: 45px;
    z-index: 3;
}

.nd-elem-programs__curve.ap-sec {
    background: #dddddd;
    z-index: 0;
}

.nd-elem-products__head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.nd-elem-products__eyebrow {
    margin: 0 0 10px;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nd-elem-products__title {
    margin: 0 0 14px;
    color: var(--nd-black);
}

.nd-elem-products__subtitle {
    max-width: 620px;
    margin: 0 auto;
}

.nd-elem-products__stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.nd-elem-products__card {
    display: grid;
    grid-template-columns: 375px 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 10px;
    background: var(--nd-white);
    color: var(--nd-black);
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nd-elem-products__card:hover {
    color: var(--nd-black);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    text-decoration: unset;
}

.nd-elem-products__card.is-visible:hover {
    transform: translateY(-6px) !important;
    transition: transform 0.3s ease;
}

.nd-elem-products__media {
    position: relative;
    min-height: 225px;
    overflow: hidden;
    background: #f7f8f9;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.nd-elem-products__media img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.25s ease;
}

.nd-elem-products__card:hover .nd-elem-products__media img {
    transform: scale(1.04);
}

.nd-elem-products__brand {
    margin: 0 0 14px;
}

.nd-elem-products__brand img {
    display: block;
    max-width: 270px;
    max-height: 62px;
    object-fit: contain;
}

.nd-elem-products__body {
    padding: 30px 34px;
    align-content: center;
}

.nd-elem-products__name {
    margin: 0 0 8px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
}

.nd-elem-products__text {
    max-width: 560px;
    margin: 0 0 18px;
    color: var(--nd-dark);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.nd-elem-products__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nd-elem-products__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 8px;
    background: #e9e9e9;
    color: var(--nd-dark);
    font-family: var(--nd-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}


/* --------------------------------
    Elementary Additional Products
--------------------------------- */

@media(max-width: 767px) {
    .nd-elem-products__head {
        margin-bottom: 36px;
    }
    .nd-elem-products__card {
        grid-template-columns: 1fr;
    }
    .nd-elem-products__logo {
        min-height: 150px;
        padding: 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .nd-elem-products__logo img {
        max-width: 100%;
    }
    .nd-elem-products__body {
        padding: 25px 20px;
    }
    .nd-elem-products__name {
        font-size: 18px;
    }
    .nd-elem-products__text {
        font-size: 15px;
        max-width: 100%;
    }
    .nd-elem-products__media {
        min-height: auto;
    }
    .nd-elem-products__brand img {
        max-width: 100%;
        margin: auto;
    }
}

@media(max-width: 575px) {
    .nd-elem-products__stack {
        gap: 22px;
    }
    .nd-elem-products__logo img {
        width: 100%;
        max-width: 300px;
        max-height: 80px;
    }
    .nd-elem-products__tag {
        font-size: 12px;
        padding: 7px 10px;
    }
}


/* -------------------------------------- About New Page -------------------------------------- */


/* ------------------------------
   About Hero
------------------------------ */

.nd-about-hero {
    position: relative;
    width: 100%;
    background: var(--nd-white);
    overflow: hidden;
}

.nd-about-hero__img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center 24%;
}


/* --------------------------------
    About Nav
--------------------------------- */

.nd-page.nd-about-new-page {
    overflow: clip;
}

.nd-about-nav-wrap {
    position: relative;
}

.nd-about-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    background: var(--nd-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nd-about-nav__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 95px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nd-about-nav__inner::-webkit-scrollbar {
    display: none;
}

.nd-about-nav__link {
    position: relative;
    flex: 0 0 auto;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.25s ease;
}

.nd-about-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--nd-orange);
    transition: width 0.25s ease;
}

.nd-about-nav__link:hover,
.nd-about-nav__link.is-active,
.nd-about-nav__link:visited,
.nd-about-nav__link:focus {
    color: var(--nd-black);
    text-decoration: none;
}

.nd-about-nav__link:hover::after,
.nd-about-nav__link.is-active::after {
    width: 100%;
}

.nd-about-nav.v2 {
    background: #f5f5f6;
    border-bottom: unset;
    border-radius: 100% 100% 0 0;
    margin: -3%;
    width: 106%;
    padding-top: 30px;
}

.nd-about-nav.v2 .nd-about-nav__inner {
    justify-content: center;
}

.nd-about-nav.v2.is-sticky {
    padding-top: unset;
    border-radius: unset;
}


/* --------------------------------
    About Why
--------------------------------- */

.nd-about-why {
    position: relative;
    background: #f4f5f6;
    overflow: hidden;
}

.nd-about-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.nd-about-why__content {
    position: relative;
    z-index: 1;
    padding: 115px 150px 115px 145px;
    align-content: center;
}

.nd-about-why__content::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -80px;
    width: 1900px;
    height: 1900px;
    border-radius: 50%;
    background: #ebeced;
    z-index: -1;
}

.nd-about-why__title {
    margin: 0 0 24px;
    color: var(--nd-black);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-about-why__text {
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.nd-about-why__text p {
    margin: 0 0 22px;
}

.nd-about-why__text p:last-child {
    margin-bottom: 0;
}

.nd-about-why__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 70px;
    background-image: url("https://www.socialstudies.com/wp-content/uploads/about-us-bg-color-texture-half.webp");
    background-size: cover;
    background-position: center;
    min-height: 700px;
    overflow: hidden;
    z-index: 2;
}

.nd-about-why__quote {
    max-width: 610px;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: 44px;
    font-size: clamp(28px, 3.14vw, 60px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.04em;
}


/* --------------------------------
    About Values
--------------------------------- */

.nd-about-values {
    position: relative;
    background: var(--nd-white);
    padding: 100px 0;
    overflow: hidden;
}

.nd-about-values__head {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.nd-about-values__title {
    margin: 0 0 24px;
    color: var(--nd-black);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-about-values__subtitle {
    margin: 0;
    color: var(--nd-dark);
    font-size: clamp(17px, 1.1vw, 21px);
    line-height: 1.4;
}

.nd-about-values__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: clamp(70px, 8.9vw, 125px);
}

.nd-about-values__tabs {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 100px;
}

.nd-about-values__tab {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-align: left;
    cursor: pointer;
    user-select: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nd-about-values__tab:nth-child(1) {
    margin-left: 0;
}

.nd-about-values__tab:nth-child(2) {
    margin-left: 22px;
}

.nd-about-values__tab:nth-child(3) {
    margin-left: 44px;
}

.nd-about-values__tab:nth-child(4) {
    margin-left: 66px;
}

.nd-about-values__tab:nth-child(5) {
    margin-left: 88px;
}

.nd-about-values__icon {
    position: relative;
    flex: 0 0 80px;
    width: 80px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-about-values__icon::before {
    content: "";
    position: absolute;
    right: -53%;
    top: 50%;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--nd-light);
    transform: translateY(-50%);
    z-index: -1;
}

.nd-about-values__icon img {
    position: relative;
    z-index: 1;
    max-width: 75px;
    max-height: 75px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.nd-about-values__tab:hover,
.nd-about-values__tab.is-active {
    color: var(--nd-orange);
}

.nd-about-values__tab:hover,
.nd-about-values__tab.is-active {
    color: var(--nd-orange);
    transform: translateX(10px);
}

.nd-about-values__tab .nd-about-values__icon img {
    filter: grayscale(1);
}

.nd-about-values__tab:hover .nd-about-values__icon img,
.nd-about-values__tab.is-active .nd-about-values__icon img {
    filter: grayscale(0);
    transform: scale(1.08) rotate(-3deg);
}

.nd-about-values__tab:hover .nd-about-values__icon::before,
.nd-about-values__tab.is-active .nd-about-values__icon::before {
    background: rgba(243, 111, 50, 0.14);
}

.nd-about-values__content {
    max-width: 560px;
    margin-left: auto;
}

.nd-about-values__visual {
    margin-bottom: 30px;
}

.nd-about-values__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.nd-about-values__desc {
    margin: 0;
    color: var(--nd-black);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.04em;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nd-about-values__desc.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.nd-about-values__mobile-title {
    display: none;
}


/* --------------------------------
    About Values Reveal Animation
--------------------------------- */

.nd-about-values__tab {
    opacity: 0;
    transform: translateY(18px);
}

.nd-about-values__tab.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.nd-about-values__tab.is-revealed:hover,
.nd-about-values__tab.is-revealed.is-active {
    transform: translateX(10px);
}


/* --------------------------------
    About Commitment
--------------------------------- */

.nd-about-commitment {
    position: relative;
    background: #5a5a5a;
    padding: 85px 0;
    overflow: hidden;
}

.nd-about-commitment__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px 34px;
    align-items: start;
}

.nd-about-commitment__img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.nd-about-commitment__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nd-about-commitment__img--one {
    grid-column: 1 / 7;
    grid-row: 1;
    height: 380px;
}

.nd-about-commitment__content {
    grid-column: 7 / 13;
    grid-row: 1;
    padding: 20px 0 0 34px;
    color: var(--nd-white);
}

.nd-about-commitment__img--two {
    grid-column: 1 / 6;
    grid-row: 2;
    height: 500px;
}

.nd-about-commitment__img--three {
    grid-column: 6 / 13;
    grid-row: 2;
    height: 500px;
}

.nd-about-commitment__title {
    margin: 0 0 20px;
    color: var(--nd-white);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
}

.nd-about-commitment__text {
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.04em;
    max-width: 600px;
}

.nd-about-commitment__text p {
    margin: 0 0 24px;
}

.nd-about-commitment__text p:last-child {
    margin-bottom: 0;
}


/* --------------------------------
    About Team
--------------------------------- */

.nd-about-team {
    position: relative;
    background: #f2f3f4;
    padding: 75px 0 150px;
    overflow: hidden;
}

.nd-about-team__head {
    margin-bottom: 70px;
    text-align: center;
}

.nd-about-team__title {
    margin: 0;
    color: var(--nd-black);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-about-team__group {
    margin-bottom: 95px;
}

.nd-about-team__group:last-child {
    margin-bottom: 0;
}

.nd-about-team__intro {
    max-width: 980px;
    margin-bottom: 70px;
}

.nd-about-team__group-title {
    margin: 0 0 10px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.nd-about-team__group-text {
    margin: 0;
    max-width: 980px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(15px, 1.2vw, 20px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.nd-about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 4vw, 95px);
}

.nd-about-team__card {
    text-align: center;
}

.nd-about-team__photo {
    position: relative;
    width: 100%;
    max-width: 245px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: #ead783;
}

.nd-about-team__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-about-team__card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nd-about-team__name {
    margin: 0 0 6px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(18px, 1.25vw, 22px);
    font-weight: 500;
    line-height: 1.2;
}

.nd-about-team__role {
    margin: 0;
    color: var(--nd-dark);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}


/* --------------------------------
    About Team Bio Button
--------------------------------- */

.nd-about-team__bio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: underline;
}

.nd-about-team__bio-icon {
    width: 17px;
    height: 17px;
    fill: var(--nd-orange);
    transition: transform 0.25s ease;
}

.nd-about-team__bio-icon {
    width: 17px;
    height: 17px;
    fill: var(--nd-orange);
    transition: transform 0.25s ease;
}

.nd-about-team__bio-icon--arrow {
    width: 18px;
    height: 18px;
    transform: rotate(-45deg);
}

.nd-about-team__bio-btn:hover .nd-about-team__bio-icon--arrow {
    transform: rotate(-45deg);
}

.nd-about-team__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.nd-about-team__contact a {
    color: var(--nd-dark);
    font-family: var(--nd-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nd-about-team__contact a:hover {
    color: var(--nd-orange);
}


/* --------------------------------
    Team Bio Modal
--------------------------------- */

.nd-team-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.nd-team-modal.is-open {
    display: flex;
}

.nd-team-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.nd-team-modal__box {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    max-height: calc(100vh - 48px);
    border-radius: 24px;
    background: var(--nd-white);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.nd-team-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--nd-black);
    color: var(--nd-white);
    font-size: 25px;
    cursor: pointer;
    transition: background 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-team-modal__close:hover {
    background: var(--nd-orange);
}

.nd-team-modal__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
    padding: 46px;
}

.nd-team-modal__photo {
    width: 250px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #ead783;
}

.nd-team-modal__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-team-modal__name {
    margin: 0 0 8px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
}

.nd-team-modal__role {
    margin: 0 0 22px;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.nd-team-modal__bio {
    margin: 0;
    color: var(--nd-dark);
    font-family: var(--nd-font);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

body.nd-team-modal-open {
    overflow: hidden;
}


/* --------------------------------
    Team Bio Modal Animation
--------------------------------- */

.nd-team-modal {
    opacity: 0;
    pointer-events: none;
    display: flex;
    transition: opacity 0.28s ease;
}

.nd-team-modal.is-preopen,
.nd-team-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nd-team-modal__overlay {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nd-team-modal.is-open .nd-team-modal__overlay {
    opacity: 1;
}

.nd-team-modal__box {
    opacity: 0;
    transform: translate(var(--nd-modal-x, 0px), var(--nd-modal-y, 0px)) scale(var(--nd-modal-scale, 0.12));
    transform-origin: center center;
    border-radius: 999px;
    transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, border-radius 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, border-radius;
}

.nd-team-modal.is-open .nd-team-modal__box {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    border-radius: 24px;
}

.nd-team-modal__grid {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s ease 0.22s, transform 0.3s ease 0.22s;
}

.nd-team-modal.is-open .nd-team-modal__grid {
    opacity: 1;
    transform: translateY(0);
}


/* --------------------------------
    Team Bio Modal
--------------------------------- */

@media(max-width: 767px) {
    .nd-team-modal {
        padding: 18px;
    }
    .nd-team-modal__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 42px 24px 28px;
        text-align: center;
    }
    .nd-team-modal__photo {
        width: 190px;
        margin: 0 auto;
    }
    .nd-team-modal__role {
        margin-bottom: 18px;
    }
    .nd-team-modal__bio {
        font-size: 16px;
        text-align: left;
    }
}

@media(max-width: 480px) {
    .nd-team-modal__box {
        border-radius: 18px;
    }
    .nd-team-modal__photo {
        width: 160px;
    }
    .nd-team-modal__close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 25px;
    }
}


/* --------------------------------
    About History
--------------------------------- */

.nd-about-history {
    position: relative;
    background: var(--nd-white);
    padding: 0 0 75px;
    margin-top: 35px;
}

.nd-elem-programs__curve.nd-history-curve {
    background: #ffffff;
    z-index: 0;
}

.nd-about-history__head {
    max-width: 815px;
    margin: 0 auto 30px;
    text-align: center;
}

.nd-about-history__title {
    margin: 0 0 18px;
    color: var(--nd-black);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-about-history__intro {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.nd-about-history__outer {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease;
}

.nd-about-history__timeline {
    position: relative;
    padding-top: 70px;
}

.nd-about-history__timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    transform: translateX(-50%);
}

.nd-about-history__timeline::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 50%;
    z-index: 3;
    width: 14px;
    height: 14px;
    border: 2px solid var(--nd-white);
    border-radius: 50%;
    background: var(--nd-black);
    box-shadow: 0 0 0 1px var(--nd-black);
    transform: translateX(-50%);
}

.nd-about-history__item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 310px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.nd-about-history__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nd-about-history__image-wrap,
.nd-about-history__content {
    position: relative;
    z-index: 1;
}

.nd-about-history__item.is-right .nd-about-history__image-wrap {
    grid-column: 1 / 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 80px;
}

.nd-about-history__item.is-right .nd-about-history__content {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: start;
    padding-left: 70px;
    text-align: left;
}

.nd-about-history__item.is-left .nd-about-history__image-wrap {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: start;
    margin-left: 80px;
}

.nd-about-history__item.is-left .nd-about-history__content {
    grid-column: 1 / 2;
    grid-row: 1;
    justify-self: end;
    padding-right: 70px;
    text-align: right;
}

.nd-about-history__content {
    max-width: 400px;
    padding: 10px 0;
}

.nd-about-history__year {
    margin: 0 0 8px;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;
    line-height: 1;
}

.nd-about-history__text {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(15px, 1.5vw, 22px);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.nd-about-history__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 32px;
    height: 32px;
    border: 3px solid var(--nd-white);
    border-radius: 50%;
    background: var(--nd-black);
    box-shadow: 0 0 0 2px var(--nd-black);
    transform: translate(-50%, -50%);
}

.nd-about-history__image-wrap {
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
}

.nd-about-history__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nd-about-history__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    height: 165px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--nd-white));
    opacity: 1;
    transition: opacity 0.25s ease;
}

.nd-about-history__fade.is-hidden {
    opacity: 0;
}

.nd-about-history__more {
    position: relative;
    z-index: 6;
    margin-top: -2px;
    text-align: center;
}

.nd-about-history__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 44px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--nd-black);
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nd-about-history__btn:hover {
    background: var(--nd-orange);
    transform: translateY(-2px);
}

.nd-about-history__btn.is-hidden {
    display: none;
}

.nd-about-history__btn.is-complete {
    cursor: default;
    background: var(--nd-orange);
    pointer-events: none;
}


/* --------------------------------
    About History Full Width Alternating BG
--------------------------------- */

.nd-about-history__outer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.nd-about-history__timeline {
    max-width: var(--nd-container);
    margin: 0 auto;
}

.nd-about-history__item {
    z-index: 1;
}

.nd-about-history__item:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: 100%;
    background: #fbfbfc;
    transform: translateX(-50%);
    pointer-events: none;
}

.nd-about-history__image-wrap,
.nd-about-history__content,
.nd-about-history__dot {
    z-index: 2;
}

.nd-about-history__timeline::before,
.nd-about-history__timeline::after {
    z-index: 3;
}


/* -------------------------------------- New Home Page -------------------------------------- */


/* --------------------------------------
   Home Page Font Setup
-------------------------------------- */

.nd-home-page {
    --nd-home-serif: "Constantia", "Georgia", "Times New Roman", serif;
}


/* Use this class only where Constantia is required */

.nd-home-page .nd-home-serif,
.nd-home-page .nd-home-serif * {
    font-family: var(--nd-home-serif) !important;
}


/* ------------------------------
   Home Hero
------------------------------ */

.nd-home-hero {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--nd-black);
}

.nd-home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.nd-home-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 1) 100%);
}

.nd-home-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.nd-home-hero .nd-home-hero__content {
    position: relative;
    z-index: 3;
}

.nd-home-hero__content {
    max-width: 720px;
    padding-bottom: 170px;
}

.nd-home-hero__title {
    margin: 0;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 600;
    line-height: 1.3;
}


/* ------------------------------
   Home New & Notable
------------------------------ */

.nd-home-notable {
    position: relative;
    background: #f1f2f3;
    padding: 0 0 80px;
    margin-top: 135px;
    z-index: 2;
}

.nd-home-notable .nd-container {
    position: relative;
    z-index: 2;
    margin-top: -92px;
}

.nd-home-notable__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.nd-home-notable__title {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-home-notable__see-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--nd-black);
    color: var(--nd-white) !important;
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.nd-home-notable__see-all:hover {
    background: var(--nd-orange);
    color: var(--nd-white) !important;
    text-decoration: none !important;
}

.nd-home-notable__see-all-link {
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    overflow: hidden;
    line-height: 1;
}

.nd-home-notable__see-all-link::before,
.nd-home-notable__see-all-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--nd-orange);
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.nd-home-notable__see-all-link::before {
    transform: translateX(0);
}

.nd-home-notable__see-all-link::after {
    transform: translateX(-120%);
}

.nd-home-notable__see-all-link:hover,
.nd-home-notable__see-all-link:visited,
.nd-home-notable__see-all-link:focus {
    color: #000;
    text-decoration: none;
}

.nd-home-notable__see-all-link:hover::before {
    transform: translateX(120%);
}

.nd-home-notable__see-all-link:hover::after {
    transform: translateX(0);
}

.nd-home-notable__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(18px, 2.4vw, 48px);
}

.nd-home-notable-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--nd-black) !important;
    text-decoration: none !important;
    transition: transform 0.6s ease;
}

.nd-home-notable-card:hover {
    color: var(--nd-black) !important;
    text-decoration: none !important;
}

.nd-home-notable-card.is-visible:hover {
    transform: translateY(-6px) !important;
}


/* .nd-home-notable-card__media {
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */

.nd-home-notable-card__media {
    width: 100%;
}

.nd-home-notable-card__media img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.nd-home-notable-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--nd-white);
    padding: 30px 34px 34px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.nd-home-notable-card__level {
    margin: 0 0 10px;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nd-home-notable-card__title {
    margin: 0 0 14px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(18px, 1.75vw, 25px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nd-home-notable-card__text {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.nd-home-notable-card__date {
    margin: 0 0 12px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.nd-notable-card-media_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.nd-notable-card-media_wrap .nd-notable-card_logo {
    width: 100%;
    padding: 0 10px;
    min-height: 75px;
    align-content: center;
    background: #fff;
    border-radius: 10px 10px 0 0;
}

.nd-notable-card_logo .nd-notable-card_logo-img {
    width: 100%;
    max-width: 235px;
    max-height: 50px;
    object-fit: contain;
    margin: auto;
}

.card-v2 .nd-home-notable-card__media img {
    object-fit: cover;
}

.nd-home-notable-card.v3 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.nd-home-notable-card.v3 .nd-home-notable-card__media {
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
}

.nd-home-notable-card.v3 .nd-home-notable-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.nd-home-notable-card.v3:hover .nd-home-notable-card__media img {
    transform: scale(1.04);
}

.nd-home-notable-card.v3 .nd-home-notable-card__body {
    box-shadow: unset;
}

.service-sessions-sec.nd-home-notable .nd-container {
    margin-top: unset;
}


/* ------------------------------
   Home School Level CTA
------------------------------ */

.nd-home-school-cta {
    margin-top: clamp(55px, 6vw, 85px);
    padding: 50px 70px 65px;
    border-radius: 10px;
    background: #f26638;
    text-align: center;
}

.nd-home-school-cta__title {
    margin: 0 0 34px;
    color: var(--nd-white);
    font-size: clamp(18px, 1.75vw, 28px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.nd-home-school-cta__buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 6vw, 95px);
}

.nd-home-school-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    margin: auto;
    padding: 18px 24px;
    border: 1px solid var(--nd-white);
    border-radius: 999px;
    background: transparent;
    color: var(--nd-white) !important;
    font-family: var(--nd-font);
    font-size: clamp(17px, 1.3vw, 22px);
    font-weight: 300;
    line-height: 1;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.nd-home-school-cta__btn:hover {
    background: var(--nd-white);
    color: var(--nd-orange) !important;
    text-decoration: none !important;
}


/* ------------------------------
   Home Big Ideas
------------------------------ */

.nd-home-big-ideas {
    position: relative;
    overflow: hidden;
    background: #57585a;
    padding: 100px 0 100px;
}

.nd-home-big-ideas__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 34px;
    align-items: start;
}

.nd-home-big-ideas__intro {
    grid-column: 1 / 5;
    grid-row: 1;
    padding-top: 20px;
    padding-left: 20px;
    color: var(--nd-white);
}

.nd-home-big-ideas__heading {
    margin: 0 0 20px;
    color: var(--nd-white);
    line-height: 0.85;
}

.nd-home-big-ideas__heading span,
.nd-home-big-ideas__heading strong {
    display: block;
    font-family: var(--nd-home-serif);
    font-size: clamp(80px, 8.9vw, 125px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.nd-home-big-ideas__heading span {
    color: var(--nd-white);
}

.nd-home-big-ideas__heading strong {
    color: var(--nd-orange);
}

.nd-home-page .nd-home-big-ideas__heading small {
    font-family: var(--nd-font) !important;
}

.nd-home-big-ideas__heading small {
    display: block;
    margin-top: 6px;
    color: var(--nd-white);
    font-family: var(--nd-font) !important;
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 700;
    line-height: 1.1;
}

.nd-home-big-ideas__heading small em {
    font-family: var(--nd-home-serif);
    font-size: 1.15em;
    font-weight: 400;
    font-style: italic;
}

.nd-home-big-ideas__text {
    max-width: 296px;
    margin: 0;
    color: var(--nd-white);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.nd-home-big-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f1f2f3;
    color: var(--nd-black) !important;
    text-decoration: none !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nd-home-big-card:hover {
    color: var(--nd-black) !important;
    text-decoration: none !important;
    transform: translateY(-5px);
}

.nd-home-big-card--featured {
    grid-column: 5 / 13;
    grid-row: 1;
}

.nd-home-big-card--values {
    grid-column: 1 / 7;
    grid-row: 2;
}

.nd-home-big-card--clarity {
    grid-column: 7 / 13;
    grid-row: 2;
}

.nd-home-big-card__media {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #d8d8d8;
}

.nd-home-big-card--featured .nd-home-big-card__media {
    height: 400px;
}

.nd-home-big-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.nd-home-big-card:hover .nd-home-big-card__media img {
    transform: scale(1.04);
}

.nd-home-big-card__body {
    flex: 1;
    background: #ededee;
    padding: 28px 60px 32px;
}

.nd-home-big-card__type {
    margin: 0 0 8px;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.nd-home-big-card__title {
    margin: 0 0 10px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(20px, 1.55vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.nd-home-big-card__text {
    margin: 0;
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.nd-home-page .nd-final-cta__text {
    max-width: 800px;
}


/* ------------------------------
   Home Impact
------------------------------ */

.nd-home-impact {
    position: relative;
    background: #f9f6e4;
    overflow: hidden;
}

.nd-home-impact__sticky {
    position: relative;
    overflow: hidden;
    background: #f9f6e4;
}

.nd-home-impact__grid {
    display: grid;
    grid-template-columns: minmax(420px, 46%) minmax(0, 54%);
    align-items: stretch;
    background: #f9f6e4;
}

.nd-home-impact__visual {
    position: relative;
}


/* Cream arc shape behind the moving images */

.nd-home-impact__arc {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 180%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--nd-orange);
    pointer-events: none;
}

.nd-home-impact__gallery-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.nd-home-impact__gallery {
    width: min(72%, 590px);
    margin-left: 10%;
    margin-right: clamp(22px, 2vw, 38px);
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.2vw, 20px);
    padding: clamp(28px, 4vw, 56px) 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.nd-home-impact__image {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: #dddddd;
}

.nd-home-impact__image:nth-child(3n+1) {
    height: clamp(205px, 16.5vw, 275px);
}

.nd-home-impact__image:nth-child(3n+2) {
    height: clamp(200px, 20vw, 330px);
}

.nd-home-impact__image:nth-child(3n+3) {
    height: clamp(215px, 17vw, 290px);
}

.nd-home-impact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Right Content */

.nd-home-impact__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(70px, 7vw, 120px) clamp(35px, 6vw, 110px);
    text-align: center;
}

.nd-home-impact__eyebrow {
    position: relative;
    margin: 0 0 70px;
    color: var(--nd-orange);
    font-family: var(--nd-font);
    font-size: clamp(24px, 2vw, 36px);
    font-weight: 600;
    line-height: 1.2;
}

.nd-home-impact__eyebrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 80%;
    height: 6px;
    border-radius: 50%;
    background: #ead783;
    transform: translateX(-50%) rotate( 1deg);
}

.nd-home-impact__quote-mark {
    margin-bottom: 12px;
}

.nd-home-impact__quote-mark img {
    max-width: 60px;
    object-fit: contain;
}

.nd-home-impact__quote {
    max-width: 900px;
    margin: 0 auto 42px;
    color: var(--nd-black);
    font-family: var(--nd-home-serif);
    font-size: clamp(28px, 2.3vw, 44px);
    font-weight: 400;
    line-height: 1.4;
}

.nd-home-impact__author {
    margin-bottom: 80px;
    color: var(--nd-black);
    font-family: var(--nd-font);
    line-height: 1.4;
}

.nd-home-impact__author strong {
    display: block;
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 700;
}

.nd-home-impact__author span {
    display: block;
    font-size: 15px;
    font-weight: 400;
}

.nd-home-impact__btn {
    min-width: 140px;
}


/* --------------------------------
Investigate Page
--------------------------------- */

.nd-investigate-content-area .nd-state-edition__bg {
    inset: 10px 0 0px;
}


/* Explore Your Content Area - V2 */

.nd-investigate-content-area .nd-content-area__inner {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.nd-investigate-content-area .nd-content-area__head {
    margin-bottom: 34px;
}

.nd-investigate-content-area .nd-content-area__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.nd-investigate-content-area .nd-content-area__card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.nd-investigate-content-area .nd-content-area__card h3 {
    margin-bottom: 22px;
}

.nd-investigate-content-area .nd-content-area__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nd-investigate-content-area .nd-content-area__actions .nd-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 991px) {
    .nd-investigate-content-area .nd-content-area__grid {
        grid-template-columns: 1fr;
    }
}


/* --------------------------------
       ND Sticky Get In Touch CTA
    --------------------------------- */

.nd-sticky-contact-wrap {
    position: fixed;
    right: 0;
    bottom: clamp(120px, 18vh, 210px);
    z-index: 99;
    pointer-events: none;
}

.nd-sticky-contact {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 56px;
    padding: 10px 12px 10px 25px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-right: 0;
    border-radius: 99px 0 0 99px;
    background: var(--nd-white, #ffffff);
    color: var(--nd-black, #000000) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    font-family: var(--nd-font, "Inter", sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    white-space: nowrap;
    pointer-events: auto;
    transition: padding 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}


/*
     * Orange reveal layer
     */

.nd-sticky-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--nd-orange);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nd-sticky-contact__text {
    position: relative;
    z-index: 1;
    color: inherit;
    transition: color 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nd-sticky-contact__icon {
    position: relative;
    z-index: 1;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nd-orange);
    color: var(--nd-white, #ffffff);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nd-sticky-contact__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}

@media (hover: hover) {
    .nd-sticky-contact:hover {
        padding-left: 32px;
        border-color: var(--nd-orange);
        color: var(--nd-white, #ffffff) !important;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
        transform: translateX(0);
    }
    .nd-sticky-contact:hover::before {
        transform: scaleX(1);
    }
    .nd-sticky-contact:hover .nd-sticky-contact__text {
        transform: translateX(-3px);
    }
    .nd-sticky-contact:hover .nd-sticky-contact__icon {
        background: var(--nd-black, #000000);
    }
}

.nd-sticky-contact:focus-visible {
    color: var(--nd-white, #ffffff) !important;
    outline: 3px solid rgba(243, 111, 50, 0.35);
    outline-offset: 4px;
}

.nd-sticky-contact:focus-visible::before {
    transform: scaleX(1);
}

.nd-sticky-contact:focus-visible .nd-sticky-contact__icon {
    background: var(--nd-black, #000000);
}


/* Tablet */

@media (max-width: 991px) {
    .nd-sticky-contact-wrap {
        bottom: 100px;
    }
    .nd-sticky-contact {
        min-height: 52px;
        padding: 8px 10px 8px 21px;
        font-size: 14px;
    }
    .nd-sticky-contact__icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
}


/* Mobile */

@media (max-width: 575px) {
    .nd-sticky-contact-wrap {
        right: 14px;
        bottom: 18px;
    }
    .nd-sticky-contact {
        min-height: 48px;
        padding: 7px 8px 7px 18px;
        border: 0;
        border-radius: 99px;
        background: var(--nd-orange);
        color: var(--nd-white, #ffffff) !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }
    .nd-sticky-contact::before {
        display: none;
    }
    .nd-sticky-contact__icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        background: var(--nd-black, #000000);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nd-sticky-contact,
    .nd-sticky-contact::before,
    .nd-sticky-contact__text,
    .nd-sticky-contact__icon,
    .nd-sticky-contact__icon svg {
        transition: none;
    }
}

.nd-home-big-ideas__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.nd-home-big-ideas__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.nd-elementary-atlas__spanish {
    margin: 10px 0 0;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 400;
}

.nd-elementary-atlas__summary {
    color: var(--nd-black);
    font-family: var(--nd-font);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 400;
}

.smp-accordion #nd-enc-inside-panel-2 .nd-enc-accordion__panel-inner {
    padding-top: .25rem;
}