    @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    @font-face {
        font-family: 'Avenir';
        src: url('../fonts/Avenir/Avenir-Regular.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Avenir';
        src: url('../fonts/Avenir/Avenir-Heavy.woff2') format('woff2');
        font-weight: 800;
        font-style: normal;
        font-display: swap;
    }

    body {
        font-family: 'Avenir', sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
    }

    h1 {
        font-size: clamp(25px,
                calc(25px + 15 * ((100vw - 320px) / (1920 - 320))),
                40px);
        font-weight: 800;
        color: var(--primary-heading-color);
    }

    h2 {
        font-size: clamp(20px,
                calc(20px + 20 * ((100vw - 320px) / (1920 - 320))),
                30px);
        font-weight: 800;
        color: var(--primary-heading-color);
    }


    p,
    a,
    li,
    strong {
        line-height: 120%;
        letter-spacing: 0%;
        text-decoration: none;
    }

    /* GLOBAL BTN */
    .btn {
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        gap: 18px;
        padding: 11px 13px;
        max-width: 235px;
        width: 100%;
        transition: 0.3s ease;
    }

    .primary-btn {
        background-color: var(--primary-button-background);
        color: var(--primary-button-color);

    }

    .secondary-btn {
        background-color: var(--secondary-button-background);
        color: var(--secondary-button-color);

    }

    .primary-btn svg {
        filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(2287%) hue-rotate(165deg) brightness(97%) contrast(101%);
    }

    .btn:hover svg {
        filter: none;
    }

    /* HOVER BTN */
    .btn:hover {
        background-color: var(--secondary-button-background);
        color: var(--secondary-button-color);
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
    }


    .green-spinner.spin-alternate {
        animation: spinAlt 4s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
        margin-bottom: 22px;
    }


    @keyframes spinAlt {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .icon-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }


    /* GLOBAL */
    .container {
        max-width: 1920px;
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

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

    .error-404-section {
        min-height: 70vh;
        display: flex;
        align-items: center;
        padding: clamp(80px, calc(80px + 60 * ((100vw - 320px) / (1920 - 320))), 140px) clamp(20px, calc(20px + 60 * ((100vw - 320px) / (1920 - 320))), 80px);
        background-color: #E6F6FA;
    }

    .error-404-content {
        max-width: 760px;
    }

    .error-404-kicker {
        color: #00AEEF;
        font-size: clamp(48px, calc(48px + 40 * ((100vw - 320px) / (1920 - 320))), 88px);
        font-weight: 800;
    }

    .error-404-text {
        max-width: 620px;
        padding-top: 18px;
        color: var(--primary-text-color);
        font-size: 20px;
    }

    .error-404-search {
        display: flex;
        max-width: 620px;
        margin-top: 32px;
        border: 1px solid #00A4E4;
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
    }

    .error-404-search input {
        flex: 1;
        min-width: 0;
        border: 0;
        padding: 16px 18px;
        color: var(--primary-text-color);
        font-family: 'Avenir', sans-serif;
        font-size: 18px;
        outline: none;
    }

    .error-404-search button {
        border: 0;
        padding: 16px 24px;
        background-color: #003768;
        color: #fff;
        cursor: pointer;
        font-family: 'Avenir', sans-serif;
        font-size: 18px;
        font-weight: 800;
    }

    .error-404-home {
        margin-top: 28px;
    }



    /* HERO SECTION STARTS HERE*/
    .hero-section {
        width: 100%;
        background: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
    }

    .hero-section-has-image>.container {
        position: relative;
    }

    .hero-section-inner {
        height: clamp(650px, calc(650px + 426 * (((100vw - 320px) / (1920 - 320)))), 1076px);
        display: flex;
        align-items: center;
        padding: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1900 - 320))), 120px);
    }

    /* RESOURCE PAGE HERE SECTION STARTS */
    .page-resources .hero-section-inner {
        justify-content: space-between;
        height: clamp(650px, calc(650px + 200 * (((100vw - 320px) / (1920 - 320)))), 845px);
    }

    .page-resources .hero-right img {
        max-width: 753px;
    }

    /* RESOURCE PAGE HERE SECTION ENDS*/

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 760px;
        width: 100%;
    }

    .hero-left h1 {
        font-size: clamp(25px,
                calc(25px + 35 * ((100vw - 320px) / (1920 - 320))),
                60px);
        margin-bottom: 49px;
        color: var(--hero-heading-color, var(--primary-heading-color));
    }

    /* RESOURCE PAGE HERE SECTION STARTS */
    .page-resources .hero-left h1 {
        font-size: clamp(25px,
                calc(25px + 35 * ((100vw - 320px) / (1920 - 320))),
                50px);
	max-width: 736px;
    }

    /* RESOURCE PAGE HERE SECTION ENDS */

    .hero-sub-text {
        /* font-family: "Abhaya Libre", serif; */
        max-width: 620px;
        font-size: 18px;
        font-weight: 300;
        color: var(--hero-sub-text-color, var(--primary-text-color));
        letter-spacing: 0%;
        margin-bottom: 29px;
    }

    .hero-sub-heading {
        font-weight: 800;
        font-size: clamp(18px,
                calc(18px + 22 * ((100vw - 320px) / (1920 - 320))),
                40px);
        color: var(--hero-sub-heading-color, #00A4E4);
    }


    .hero-btn {
        display: flex;
        gap: 25px;
    }

    .page-areas-of-focus .hero-btn {
        flex-direction: column;
    }

    .page-areas-of-focus button.hero-sect-button {
        border: 0;
        font-family: inherit;
        cursor: default;
    }

    .hero-four-area-category {
        width: 100%;
        margin-top: clamp(28px, 3vw, 46px);
    }

    .hero-four-area-category .four-area-category-ul {
        max-width: 740px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: initial;
        gap: 18px 24px;
        margin: 0;
        padding: 0;
    }

    .hero-four-area-category .four-area-category-ul li a {
        display: inline-block;
        font-size: clamp(14px, 1vw, 18px);
        line-height: 1.25;
    }

    @media (max-width: 768px) {
        .hero-four-area-category .four-area-category-ul {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px 20px;
        }
    }

    @media (max-width: 480px) {
        .hero-four-area-category .four-area-category-ul {
            grid-template-columns: 1fr;
        }
    }

    .page-areas-of-focus .hero-sect-button:nth-child(2),
    .hero-sect-button {
        padding-top: clamp(10px, calc(10px + 6* (((100vw - 320px) / (1921 - 320)))), 16px);
        padding-bottom: clamp(10px, calc(10px + 6* (((100vw - 320px) / (1921 - 320)))), 16px);
        padding-left: clamp(10px, calc(10px + 18* (((100vw - 320px) / (1921 - 320)))), 28px);
        padding-right: clamp(10px, calc(10px + 18* (((100vw - 320px) / (1921 - 320)))), 16px);
        /* padding: 16px 28px; */
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0%;
        background-color: #0073AE;
    }

    .hero-sect-button:nth-child(2) {
        background-color: transparent;
        color: #0073AE;
        border: 1px solid #0073AE;
    }

    .hero-right img {
        max-width: 988px;
        width: clamp(320px, calc(320px + 668 * (((100vw - 320px) / (1920 - 320)))), 988px);
    }

    .hero-right-cards-main {
        display: grid;
        grid-template-columns: repeat(2, minmax(250px, 350px));
        grid-template-rows: repeat(2, minmax(150px, 250px));
        gap: 25px;
    }

    .hero-card {
        padding: 11px 27px;
        background: #FFFFFF;
        box-shadow: 3px 4px 11px 0px #00000040;
        border-radius: 8px;
        position: relative;
    }

    .rectangle {
        max-width: 99px;
        max-height: 66px;
        height: 100%;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-card:nth-child(1) .rectangle,
    .hero-card:nth-child(4) .rectangle {
        background-color: #a8e0f6;
    }

    .hero-card:nth-child(2) .rectangle {
        background-color: #fff7e4;
    }

    .hero-card:nth-child(3) .rectangle {
        background-color: #cde5be;
    }


    .hero-card-text {
        max-width: 180px;
        width: 100%;
        position: absolute;
    }

    .hero-card-text span {
        /* font-size: clamp(16px, calc(16px + 24 * ((100vw - 320px) / (1920 - 320))),40px); */
        font-size: clamp(30px, calc(30px + 10 * ((100vw - 320px) / (1920 - 320))), 40px);
        font-weight: 800;
    }

    .hero-card:nth-child(1) .hero-card-text span,
    .hero-card:nth-child(4) .hero-card-text span {
        color: #00A4E4;
    }

    .hero-card:nth-child(2) .hero-card-text span {
        color: #FDB913;
    }

    .hero-card:nth-child(3) .hero-card-text span {
        color: #6CB33F;
    }

    .right-hero-sub-heading {
        font-weight: 800;
        font-size: 40px;
        padding: 17px 0 16px;
    }

    .infinity {
        font-size: clamp(60px, calc(60px + 20 * ((100vw - 320px) / (1920 - 320))), 80px) !important;
        line-height: 48px;
    }

    sup {
        vertical-align: super;
        font-size: 24px;
    }

    .right-hero-sub-text {
        color: #5F604C;
    }

    .tube-light {
        border-top-right-radius: 41px;
        border-bottom-right-radius: 41px;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        background-color: orange;
        height: 60%;
        width: 11px;
        position: relative;
        left: -27px;

    }

    .hero-card:nth-child(1) .tube-light,
    .hero-card:nth-child(4) .tube-light {
        background-color: #00A4E4;
    }

    .hero-card:nth-child(3) .tube-light {
        background-color: #6CB33F;
    }


    /* HERO SECTION ENDS HERE*/
    /* RESEARCH COMPONENT STARTS HERE */
    .research-component-section {
        padding: clamp(20px,
                calc(20px + 100 * ((100vw - 320px) / (1920 - 320))),
                120px);
        padding-bottom: 0;
    }

    .research-component-inner {
        display: flex;
        justify-content: space-between;
        margin-bottom: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .research-component-left {
        max-width: 480px;
        width: 100%;
    }

    .research-component-left h1 {
        color: var(--secondary-heading-color);
        font-size: clamp(25px,
                calc(25px + 5 * ((100vw - 320px) / (1920 - 320))),
                30px);
    }

    .research-component-right {
        max-width: 825px;
        width: 100%;
    }

    .under-line {
        position: relative;
        display: inline-block;
    }

    .under-line::after {
        content: "";
        display: block;
        /* background: url("../images/underline.png") no-repeat center; */
        background-image: var(--underline-image);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 10px;
        position: absolute;
        left: 0;
    }

    .research-component-right p {
        font-size: 18px;
        color: var(--secondary-text-color);
    }

    .research-component-right-button {
        font-weight: 800;
        color: var(--secondary-text-color);
        text-decoration: none;
        margin-top: 30px;
    }

    .research-cards-main {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .research-card {
        border-top: 1px solid #0C4477;
        border-right: 1px solid #0C4477;
        padding: 20px;
        padding-top: clamp(20px, calc(20px + 62 * ((100vw - 320px) / (1920 - 320))), 82px);
        padding-bottom: clamp(20px, calc(20px + 70 * ((100vw - 320px) / (1920 - 320))), 90px);
        position: relative;
        overflow: hidden;
        transition: background-color 0.25s ease;
    }

    .research-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.22) 20%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, rgba(0, 55, 104, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    .research-card>* {
        position: relative;
        z-index: 1;
    }

    .research-card:nth-child(1) {
        /*     border-left: -25px; */
        border-left: 1px solid #0C4477;
    }

    /* .research-card:nth-child(3) {
        padding-right: 0;
    }
    .research-card:nth-child(4) {
        border-right: none;
    } */

    .research-card:hover {
        background-color: rgba(255, 255, 255, 0.04);
    }

    .research-card svg {
        transition: transform 1s ease;
    }

    .research-card:hover svg {
        transform: rotate(90deg) scale(1.05);
    }

    .research-card:nth-child(1):hover svg {
        transform: rotate(-90deg) scale(1.05);
    }

    .research-card:hover::before {
        opacity: 1;
    }

    .research-card-text-sec {
        margin-top: clamp(20px, calc(20px + 85 * (((100vw - 320px) / (1920 - 320)))), 105px);
    }

    .research-card-text-sec h3,
    .research-card-text-sec p {
        display: -webkit-box;
        /*     -webkit-box-orient: vertical; */
        overflow: hidden;
        color: var(--secondary-text-color);
        min-height: 3.6em;
    }

    .research-card-text-sec h3 {
        -webkit-line-clamp: 2;
        font-weight: 800;
        font-size: 28px;
    }

    .research-card-text-sec p {
        --webkit-line-clamp: 3;
        font-size: 18px;
    }

    /* RESEARCH COMPONENT ENDS HERE */
    /* EMPOWER COMPONENT STARTS HERE */
    .empower-component-section {
        padding: clamp(20px,
                calc(20px + 110 * ((100vw - 320px) / (1920 - 320))),
                130px);
        padding-bottom: 0;
    }

    .empower-component-inner {
        display: flex;
        justify-content: space-between;
        /* align-items: center; */
        margin-bottom: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .empower-component-left {
        max-width: 398px;
        width: 100%;
    }

    .empower-card-main {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 1023px;
        width: 100%;
        gap: clamp(10px, calc(10px + 15 * (((100vw - 320px) / (1920 - 320)))), 30px);
    }

    .empower-card {
        padding: clamp(15px, calc(15px + 15 * (((100vw - 320px) / (1920 - 320)))), 30px);
        min-width: 170px;
        background: #FFF8E7;
        max-height: 330px;
        height: 100%;
        transform-origin: top;
        overflow: hidden;
        transition:
            transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
            background-color 0.4s ease,
            max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.16s;
        position: relative;
    }

    .empower-card:hover {
        transform: translateY(10px);
        background-color: #FDB913;
        max-height: 700px;
    }

    .empower-card svg {
        transition: 0.4s ease-in;
    }

    .empower-card:nth-child(2) {
        background-color: #E6F6FA;
    }

    .empower-card:hover svg {
        filter: brightness(0) invert(1);
    }



    .empower-card:nth-child(2):hover {
        background-color: #ADE0EE;
    }


    .empower-card:hover svg {
        transform: scale(1.5);
    }

    .empower-card h3 {
        font-weight: 800;
        color: var(--primary-heading-color);
        font-size: clamp(18px, calc(18px + 6 * (((100vw - 320px) / (1920 - 320)))), 24px);
        margin-top: clamp(20px, calc(20px + 80 * ((100vw - 320px) / (1920 - 320))), 100px);
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
    }

    .empower-text {
        font-weight: 500;
        color: var(--primary-text-color);
    }

    .empower-hover-desc {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition:
            max-height 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
            opacity 0.35s ease 0.2s,
            transform 0.45s ease 0.2s,
            visibility 0s linear 0.16s;
    }

    .empower-card:hover .empower-desc {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    .empower-card:hover .empower-hover-desc {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .empower-desc {
        max-height: 120px;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition:
            max-height 0.3s ease,
            opacity 0.2s ease,
            visibility 0s linear 0.3s;
    }

    @media (prefers-reduced-motion: reduce) {

        .empower-card,
        .empower-desc,
        .empower-hover-desc {
            transition-duration: 0.01ms !important;
            transition-delay: 0s !important;
        }
    }

    /* EMPOWER COMPONENT ENDS HERE */
    /* DATA AND RESEARCH COMPONENT ENDS HERE */
    .data-and-research-component-section {
        padding: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
        padding-bottom: 0;
        padding-top: 0;
    }

    .data-and-research-component-inner {
        border-top: 1px solid #F1F1F1;
        display: flex;
        justify-content: space-between;
    }

    .data-and-research-component-left {
        max-width: 679px;
        width: 100%;
        padding-top: clamp(20px, calc(20px + 96 * ((100vw - 320px) / (1920 - 320))), 116px);
        border-right: 1px solid #F1F1F1;
    }

    .data-and-research-component-left h1 {
        max-width: 540px;
        width: 100%;
    }

    .data-and-research-component-left h3 {
        font-weight: 800;
        font-size: clamp(18px, calc(18px + 6 * (((100vw - 320px) / (1920 - 320)))), 24px);
        margin-top: clamp(10px, calc(10px + 10 *(((100vw - 320px) / (1920 - 320)))), 20px);
    }

    .research-state-field {
        max-width: 624px;
        margin-top: clamp(18px, calc(18px + 12 * (((100vw - 320px) / (1920 - 320)))), 30px);
    }

    .research-state-field label {
        display: block;
        margin-bottom: 10px;
        color: var(--primary-heading-color);
        font-size: 18px;
        font-weight: 800;
    }

    .research-category-prompt {
        margin: 0 0 14px;
        color: var(--primary-heading-color);
        font-size: 18px;
        font-weight: 800;
    }

    .research-category-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        max-width: 624px;
    }

    .research-category-button {
        min-height: 54px;
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 11px 16px;
        border: 1px solid #b9deec;
        border-radius: 8px;
        background: #e6f6fa;
        color: #003767;
        font-family: inherit;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.25;
        text-align: left;
        cursor: pointer;
        transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .research-category-button:hover,
    .research-category-button:focus-visible {
        border-color: #00A4E4;
        background: #ffffff;
        box-shadow: 0 7px 18px rgba(0, 55, 104, 0.12);
        outline: none;
        transform: translateY(-1px);
    }

    .research-category-button.is-active {
        border-color: var(--research-category-color, #00A4E4);
        background: #ffffff;
        box-shadow: inset 4px 0 0 var(--research-category-color, #00A4E4), 0 7px 18px rgba(0, 55, 104, 0.12);
    }

    .research-category-button-dot {
        width: 11px;
        height: 11px;
        flex: 0 0 11px;
        border-radius: 50%;
        background: var(--research-category-color, #00A4E4);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--research-category-color, #00A4E4) 18%, transparent);
    }

    @media (max-width: 600px) {
        .research-category-buttons {
            grid-template-columns: 1fr;
        }
    }

    .research-state-select {
        width: 100%;
        min-height: 56px;
        padding: 12px 18px;
        border: 1px solid #00A4E4;
        border-radius: 0;
        background-color: #E6F6FA;
        color: var(--primary-heading-color);
        font: inherit;
        font-weight: 800;
        cursor: pointer;
    }

    .map-wrapper {
        position: relative;
        padding-top: clamp(20px, calc(20px + 96 * ((100vw - 320px) / (1920 - 320))), 116px);
    }

    .map-wrapper>svg {
        display: block;
        pointer-events: none;
    }

    .impact-research-map>svg {
        width: 100%;
        height: auto;
        border-radius: 8px;
        pointer-events: auto;
        background: #003767;
    }

    .impact-research-map .research-map-state {
        fill: #003767;
        stroke: #00A4E4;
        stroke-width: 1.15px;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
        transition: fill 180ms ease, filter 180ms ease;
    }

    .impact-research-map .research-map-state.has-research-comment {
        pointer-events: all;
        cursor: pointer;
    }

    .impact-research-map .research-map-state.has-research-comment:hover,
    .impact-research-map .research-map-state.has-research-comment:focus-visible {
        filter: brightness(1.12);
        outline: none;
    }

    .impact-research-map .research-map-state.is-research-state {
        stroke: #003767;
        stroke-width: 1.5px;
        paint-order: stroke fill;
    }

    .impact-research-map .research-story-marker {
        pointer-events: none;
    }

    .impact-research-map .research-story-marker-hit {
        fill: transparent;
        stroke: transparent;
        stroke-width: 12px;
        vector-effect: non-scaling-stroke;
        pointer-events: all;
        cursor: pointer;
    }

    .impact-research-map .research-story-marker-icon {
        fill: red;
        stroke: #000;
        stroke-width: 1.25px;
        vector-effect: non-scaling-stroke;
        paint-order: stroke fill;
        filter: drop-shadow(0 0 1px #003767);
        pointer-events: none;
    }

    .impact-research-map .research-story-marker-icon-dot {
        fill: #000;
        pointer-events: none;
    }

    .impact-research-map .database-map-point {
        display: none;
        pointer-events: none;
        cursor: default;
        transition: none;
    }

    .impact-research-map .database-map-point.is-research-state,
    .impact-research-map .database-map-point.is-selected-research-state {
        display: block;
        pointer-events: all;
        cursor: pointer;
    }

    .impact-research-map .database-map-point.is-research-state,
    .impact-research-map .database-map-point.is-selected-research-state:hover,
    .impact-research-map .database-map-point.is-selected-research-state:focus,
    .impact-research-map .database-map-point.is-selected-research-state:focus-visible {
        transform: scale(1);
        filter: none;
    }

    .impact-research-map .database-map-point.is-research-state .database-map-point-halo {
        display: block;
    }

    .impact-research-map .database-map-point.is-research-state {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.35));
    }

    .impact-research-map .research-state-highlight {
        stroke: #00A4E4;
        stroke-width: 1.15px;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
        pointer-events: none;
        shape-rendering: geometricPrecision;
    }

    .impact-research-map .research-hover-cue {
        pointer-events: none;
        filter: drop-shadow(0 2px 3px rgba(0, 26, 54, 0.4));
    }

    .impact-research-map .research-hover-cue text {
        fill: #ffffff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1px;
    }

    .research-map-popup.research-map-comment {
        width: min(360px, 76vw);
        max-height: 260px;
        padding: 18px 20px;
        border: 1px solid rgba(0, 55, 104, 0.12);
        border-top: 4px solid var(--research-comment-color, #00A4E4);
        border-radius: 10px;
        background-color: #ffffff;
        box-shadow: 0 14px 32px rgba(0, 26, 54, 0.22);
        color: #003768;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.55;
        pointer-events: auto;
        scrollbar-color: var(--research-comment-color, #00A4E4) #E6F6FA;
        scrollbar-width: thin;
    }

    .research-map-comment strong {
        display: block;
        margin-bottom: 12px;
        padding-bottom: 9px;
        border-bottom: 1px solid #D7EAF1;
        color: #003768;
        font-size: 17px;
        font-weight: 800;
    }

    .research-map-comment p {
        margin: 0;
    }

    .research-map-comment::-webkit-scrollbar {
        width: 8px;
    }

    .research-map-comment::-webkit-scrollbar-track {
        border-radius: 8px;
        background-color: #E6F6FA;
    }

    .research-map-comment::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: var(--research-comment-color, #00A4E4);
    }

    .research-map-popup {
        position: absolute;
        z-index: 2;
        width: min(330px, 70vw);
        max-height: 230px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, calc(-100% - 14px));
        box-shadow: 0 8px 24px rgba(0, 55, 104, 0.18);
    }

    .research-map-popup.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .research-map-popup .research-list {
        width: 100%;
        padding: 9px;
        background-color: #E6F6FA;
    }

    .research-map-popup .research-list:nth-child(even) {
        background-color: #FFF8E7;
    }

    .research-map-popup .research-list svg {
        width: 42px;
        height: 42px;
        padding: 11px;
        flex: 0 0 auto;
    }

    .research-map-popup .research-doc {
        margin-right: auto;
        font-size: 14px;
        line-height: 1.3;
    }

    .research-list-main {
        max-width: 682px;
        max-height: 308px;
        overflow-y: auto;
        margin-top: clamp(10px, calc(10px + 20 * (((100vw - 320px) / (1920 - 320)))), 30px);
    }

    .research-list {
        max-width: 624px;
        padding: 12px;
    }

    .research-list {
        display: flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .research-doc {
        font-weight: 800;
        color: var(--primary-heading-color);
    }


    .research-list svg {
        width: 53px;
        height: 53px;
        background-color: white;
        padding: 15px;
    }

    .research-list:nth-child(odd) {
        background-color: #E6F6FA;
    }

    .research-list:nth-child(even) {
        background-color: #FFF8E7;
    }

    .research-list:nth-child(odd) svg path {
        fill: #00A4E4;
    }

    .research-list:nth-child(even) svg path {
        fill: #FDB913;
    }


    .city-group {
        display: none;
    }

    .city-group.active {
        display: block;
    }

    /* DATA AND RESEARCH COMPONENT ENDS HERE */
    /* PROCESS COMPONENT STARTS HERE */
    .process-component-section {
        padding: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
        padding-bottom: 0;
        max-height: 929px;
        height: 100%;
        overflow: hidden;
    }

    .process-component-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .process-component-inner h1 {
        text-align: center;
    }

    .process-div {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: clamp(30px, calc(30px + 50 * (((100vw - 320px) / (1920 - 320)))), 80px);
        max-width: 1688px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .process {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
        position: relative;
    }

    .process-step {
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
    }

    .process-step-outer-round {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        background-color: #fff;
        border-radius: 50%;
    }

    .process-step-inner-round {
        width: 80%;
        height: 80%;
        background-color: #ffffff;
        border-radius: 50%;
    }

    .process-component-section.is-process-animating .process-step-inner-round {
        animation: processStepFill 0.45s ease forwards;
    }

    .dashed {
        position: absolute;
        top: 26px;
        left: calc(50% + 44px);
        width: calc(100% - 88px);
        border-bottom: 1px dashed #00A4E4;
        margin: 0;
        clip-path: inset(0 100% 0 0);
    }

    .process-component-section.is-process-animating .dashed {
        animation: processDashFill 0.65s linear forwards;
    }

    .process:last-child .dashed {
        display: none;
    }

    .process-component-section.is-process-animating .process:nth-child(1) .process-step-inner-round {
        animation-delay: 0s;
    }

    .process-component-section.is-process-animating .process:nth-child(1) .dashed {
        animation-delay: 0.45s;
    }

    .process-component-section.is-process-animating .process:nth-child(2) .process-step-inner-round {
        animation-delay: 1.1s;
    }

    .process-component-section.is-process-animating .process:nth-child(2) .dashed {
        animation-delay: 1.55s;
    }

    .process-component-section.is-process-animating .process:nth-child(3) .process-step-inner-round {
        animation-delay: 2.2s;
    }

    .process-component-section.is-process-animating .process:nth-child(3) .dashed {
        animation-delay: 2.65s;
    }

    .process-component-section.is-process-animating .process:nth-child(4) .process-step-inner-round {
        animation-delay: 3.3s;
    }

    .process-component-section.is-process-animating .process:nth-child(4) .dashed {
        animation-delay: 3.75s;
    }

    .process-component-section.is-process-animating .process:nth-child(5) .process-step-inner-round {
        animation-delay: 4.4s;
    }

    .process-component-section.is-process-animating .process:nth-child(n+6) .process-step-inner-round {
        animation-delay: 4.4s;
    }

    .process-component-section.is-process-animating .process:nth-child(n+6) .dashed {
        animation-delay: 4.85s;
    }

    @keyframes processStepFill {
        0% {
            background-color: #ffffff;
            transform: scale(0.72);
        }

        70% {
            background-color: #00A4E4;
            transform: scale(1.08);
        }

        100% {
            background-color: #00A4E4;
            transform: scale(1);
        }
    }

    @keyframes processDashFill {
        from {
            clip-path: inset(0 100% 0 0);
        }

        to {
            clip-path: inset(0 0 0 0);
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .process-step-inner-round,
        .dashed {
            animation: none;
        }

        .process-step-inner-round {
            background-color: #00A4E4;
            transform: none;
        }

        .dashed {
            clip-path: none;
        }
    }

    .process-paragh {
        color: var(--primary-heading-color);
        font-size: 18px;
        font-weight: 800;
        text-align: center;
        max-width: 210px;
        width: 100%;
        margin-top: 18px;
    }

    .process-section-imag {
        align-self: center;
        object-fit: scale-down;
        max-height: 544px;
        height: 100%;
        position: relative;
        max-width: 100%;
    }

    .process-section-imag::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--process-image);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        animation: spinAlt 4s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
        transform-origin: center;
        pointer-events: none;
    }

    .process-section-imag img {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    /* PROCESS COMPONENT ENDS HERE */
    /* MEANINGFUL COMPONENT STARTS HERE */
    .meaningful-component-section {
        margin-top: clamp(20px, calc(20px + 40 * (((100vw - 320px) / (1920 - 320)))), 60px);
        margin-bottom: clamp(20px, calc(20px + 40 * (((100vw - 320px) / (1920 - 320)))), 60px);
        padding-right: clamp(20px, calc(20px + 100 * (((100vw - 320px) / (1920 - 320)))), 120px);
        padding-left: clamp(20px, calc(20px + 169 * (((100vw - 320px) / (1920 - 320)))), 189px);
    }

    .meaningful-component-inner {
        max-height: 294px;
        height: 100%;
        display: flex;
        justify-content: space-between;
    }

    .meaningful-component-left {
        padding-top: clamp(20px, calc(20px + 46 * (((100vw - 320px) / (1920 - 320)))), 66px);
        padding-bottom: clamp(20px, calc(20px + 32 * (((100vw - 320px) / (1920 - 320)))), 52px);
    }

    .meaningful-component-left h1 {
        max-width: 604px;
        width: 100%;
    }

    .meaningful-component-left-button {
        text-decoration: none;
        color: #0073AE;
        margin-top: clamp(10px, calc(10px + 43 * (((100vw - 320px) / (1920 - 320)))), 53px);
    }

    .meaningful-component-right img {
        max-width: 980px;
        width: 100%;
        max-height: 294px;
        height: 100%;
        object-fit: cover;
    }

    /* MEANINGFUL COMPONENT ENDS HERE */
    /* FOUR AREAS ONE GOAL STARTS HERE */
    .four-areas-section {
        padding-top: clamp(20px, calc(20px + 39 * ((100vw - 320px) / (1920 - 320))), 59px);
        padding-right: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
        padding-left: clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
        padding-bottom: 17px;
    }

    .four-areas-inner {
        display: flex;
        gap: clamp(50px, calc(50px + 203 * ((100vw - 320px) / (1920 - 320))), 253px);
    }

    .four-area-left {
        max-width: 773px;
        width: 100%;
    }

    .four-area-heading {
        font-size: clamp(25px, calc(25px + 25 * ((100vw - 320px) / (1920 - 320))), 50px);
    }

    .four-area-right {
        max-width: 517px;
        width: 100%;
    }

    .four-area-sub-paragh {
        color: var(--primary-text-color);
        ;
        font-size: 18px;
        margin-top: clamp(10px, calc(10px + 5 * ((100vw - 320px) / (1920 - 320))), 15px);
    }

    .four-area-sub-heading {
        font-family: Arial;
        font-style: italic;
        font-size: clamp(16px, calc(25px + 25 * ((100vw - 320px) / (1920 - 320))), 26px);
        line-height: 120%;
        letter-spacing: 0%;
        color: #000000;
    }

    .four-area-card-main {
        width: 100%;
        min-height: 700px;
        margin-top: clamp(20px, calc(20px + 22 * ((100vw - 320px) / (1920 - 320))), 42px);
        /* background-color: orange; */
        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 648px));
        column-gap: clamp(30px, calc(30px + 330 * ((100vw - 320px) / (1920 - 320))), 360px);
        row-gap: 33px;
        justify-content: center;
        align-content: center;
    }

    .four-area-card {
        max-width: 648px;
        width: 100%;
        max-height: 316px;
        height: 316px;
        background-color: #FFFFFF;
        border-radius: 8px;
        padding: 18.5px 15px;
        display: flex;
        align-items: center;
        transition: 0.3s ease;
    }

    .four-area-card:hover {
        background-color: #003768;
        color: #fff;
    }

    .four-area-card:hover .fr-card-content-heading {
        color: #fff;
    }

    .fr-card-logo-div {
        max-width: 87px;
        width: 100%;
        max-height: 274px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .four-area-card:nth-child(1) .fr-card-logo-div,
    .four-area-card:nth-child(4) .fr-card-logo-div {
        background-color: #FFF0CC;
    }

    .four-area-card:nth-child(2) .fr-card-logo-div {
        background-color: #EBF4FC;
    }

    .four-area-card:nth-child(3) .fr-card-logo-div {
        background-color: #CDE5BE;
    }

    .four-area-card:hover .fr-card-logo-div {
        background-color: #14427A;
    }

    .four-area-card:nth-child(1):hover .resource-link,
    .four-area-card:nth-child(4):hover .resource-link {
        color: #FDB913;
    }

    .four-area-card:nth-child(2):hover .resource-link {
        color: #00A4E4;
    }

    .four-area-card:nth-child(3):hover .resource-link {
        color: #6CB33F;
    }

    /* ORANGE */
    .four-area-card:nth-child(1):hover .resource-rounded-img,
    .four-area-card:nth-child(4):hover .resource-rounded-img {
        filter: brightness(0) saturate(100%) invert(76%) sepia(77%) saturate(1205%) hue-rotate(357deg) brightness(103%) contrast(98%);
    }

    /* BLUE */
    .four-area-card:nth-child(2):hover .resource-rounded-img {
        filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(2287%) hue-rotate(165deg) brightness(97%) contrast(101%);
    }

    /* GREEN */
    .four-area-card:nth-child(3):hover .resource-rounded-img {
        filter: brightness(0) saturate(100%) invert(60%) sepia(42%) saturate(982%) hue-rotate(51deg) brightness(92%) contrast(88%);
    }


    .fr-card-content-div {
        max-width: 531px;
        width: 100%;
        padding: clamp(20px, calc(20px + 10 * ((100vw - 320px) / (1920 - 320))), 30px) clamp(20px, calc(20px + 2.5 * ((100vw - 320px) / (1920 - 320))), 22.5px);

    }

    .fr-card-content-heading {
        width: 100%;
    }

    .fr-card-content {
        max-width: 393px;
        width: 100%;
        padding: 30px 0;
    }

    .fr-card-content-resource-div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 475px;
        width: 100%;
    }

    .resource-link {
        text-decoration: none;
        font-size: 18px;
    }

    .four-area-card:nth-child(1) .resource-link,
    .four-area-card:nth-child(4) .resource-link {
        color: #FDB913;
    }

    .four-area-card:nth-child(2) .resource-link {
        color: #00A4E4;
    }

    .four-area-card:nth-child(3) .resource-link {
        color: #6CB33F;
    }

    .resource-rounded-img {
        max-width: 90px;
        width: 100%;
        max-height: 10px;
        height: 100%;
        object-fit: contain;
    }

    .page-areas-of-focus .under-line::after {
        height: 4px;
        /*     max-width: 57px; */
        width: 100%;
    }

    .four-area-category {
        margin-top: clamp(20px, calc(20px + 27 * ((100vw - 320px) / (1920 - 320))), 67px);
    }

    .four-area-category-ul {
        max-width: 1680px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
    }

    .four-area-category-ul li {
        list-style: none;
        cursor: pointer;
        position: relative;
    }

    .four-area-category-ul li a {
        font-weight: 800;
        font-size: 18px;
        color: var(--primary-heading-color);
        transition: 0.3s ease;
    }

    .four-area-category-ul li a:hover {
        color: #00A4E4;
    }

    .four-area-category-ul li.hover-underline:hover::after {
        content: "";
        display: block;
        background: url("../images/underline.png") no-repeat center;
        /* background-image: var(--underline-image); */
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-size: cover;
        max-width: 114px;
        width: 100%;
        height: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }


    /* FOUR AREAS ONE GOAL ENDS HERE */
    /* POLICY & PRACTICE STARTS HERE */
    .policy-practice-section {
        /*     min-height: 1008px; */
        height: 100%;
        padding: clamp(20px, calc(20px + 15 * ((100vw - 320px) / (1920 - 320))), 35px) clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
        scroll-margin-top: 100px;
    }

    .policy-practice-top-section,
    .policy-practice-down-section {
        max-width: 1680px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .practice-top-left {
        max-width: 740px;
        width: 100%;
        padding-top: 20px;
    }

    .policy-practice-heading {
        /* font-size: clamp(25px,
                calc(25px + 100 * ((100vw - 320px) / (1920 - 320))),
                50px); */
        padding-bottom: clamp(30px, calc(10px + 15 *((100vw - 320px) / (1920 - 320))), 25px);
        text-transform: none;

    }

    .policy-practice-coverage-heading {
        font-size: 25px;
        padding-bottom: 20px;
        text-transform: capitalize;
        color: var(--primary-heading-color);
        text-align: center;
    }

    .policy-practice-paragh {
        font-size: clamp(16px, calc(16px + 4 * ((100vw - 320px) / (1920 - 320))), 20px);
        color: var(--primary-text-color);
    }

    .privacy-comment-div {
        display: flex;
        gap: 20px;
        align-items: start;
        margin-top: clamp(20px, calc(20px + 10 * ((100vw - 320px) / (1920 - 320))), 29px);
    }

    .comments {
        max-width: 331px;
        width: 100%;
        font-style: italic;
        color: #003768;
        font-size: 18px;
        font-family: Arial;
    }

    .practice-top-right {
        max-width: 799px;
        width: 100%;
        padding-top: 35px;
    }

    #school-evaluation .practice-top-right {
        height: 75%;
    }

    .policy-section-image {
        display: block;
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .practice-down-left {
        max-width: 799px;
        width: 100%;
    }

    .what-we-do-div {
        max-width: 292px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .what-we-do-heading {
        font-size: 18px;
        font-weight: 800;
        color: #00A4E4;
        text-transform: uppercase;
    }

    .what-we-do-div img {
        height: 14px;
        object-fit: contain;
    }

    .policy-chips-div {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        margin-top: clamp(10px, calc(10px + 30 * ((100vw - 320px) / (1920 - 320))), 42px);
    }

    .policy-chip {
        position: relative;
        background-color: #E5F0F8;
        border: none;
        border-radius: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px clamp(10px, calc(10px + 8 * ((100vw - 320px) / (1920 - 320))), 18px);
        width: fit-content;
        box-sizing: border-box;
    }

    .policy-chip[tabindex] {
        cursor: help;
    }

    .policy-chip[tabindex]:focus-visible {
        outline: 2px solid #00A4E4;
        outline-offset: 3px;
    }

    .policy-chip-tooltip {
        position: absolute;
        left: 50%;
        bottom: calc(100% + 12px);
        z-index: 10;
        width: max-content;
        max-width: min(320px, 80vw);
        padding: 12px 15px;
        border-radius: 8px;
        background-color: #003768;
        box-shadow: 0 8px 22px rgba(0, 55, 104, 0.22);
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 8px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    }

    .policy-chip-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        border: 7px solid transparent;
        border-top-color: #003768;
        transform: translateX(-50%);
    }

    .policy-chip:hover .policy-chip-tooltip,
    .policy-chip:focus .policy-chip-tooltip,
    .policy-chip:focus-within .policy-chip-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        transition-delay: 0s;
    }

    .policy-chip-tooltip p {
        margin: 0;
        color: inherit;
    }

    .policy-chip-text {
        color: #003768;
        font-size: 16px;
        font-weight: 800;
        white-space: nowrap;
        text-transform: capitalize;
    }

    .button-div {
        margin-top: 27px;
        display: flex;
    }

    .policy-practice-down-section {
        padding-top: clamp(20px, calc(20px + 10 * ((100vw - 320px) / (1920 - 320))), 30px);
    }

    .practice-down-right {
        max-width: 729px;
        width: 100%;
        display: flex;
        gap: 31px;
        /* justify-content: end; */
    }

    .policy-practice-section-relocated-activities .policy-practice-down-section {
        flex-direction: column;
        align-items: flex-start;
    }

    @media (min-width: 1201px) {
        .policy-practice-section:not(.policy-practice-section-has-coverage-map)>.container {
            display: grid;
            grid-template-columns: minmax(0, 740px) minmax(0, 799px);
            grid-template-rows: auto auto;
            column-gap: clamp(30px, 5vw, 100px);
            align-items: start;
            justify-content: space-between;
        }

        .policy-practice-section:not(.policy-practice-section-has-coverage-map) .policy-practice-top-section {
            display: contents;
        }

        .policy-practice-section:not(.policy-practice-section-has-coverage-map) .practice-top-left {
            grid-column: 1;
            grid-row: 1;
        }

        .policy-practice-section:not(.policy-practice-section-has-coverage-map) .practice-top-right {
            grid-column: 2;
            grid-row: 1 / span 2;
        }

        .policy-practice-section:not(.policy-practice-section-has-coverage-map) .policy-practice-down-section {
            grid-column: 1;
            grid-row: 2;
        }

        .policy-practice-section-has-coverage-map>.container {
            position: relative;
        }

        .policy-practice-section-has-coverage-map .policy-practice-top-section {
            display: block;
        }

        .policy-practice-section-has-coverage-map .practice-top-right {
            position: absolute;
            top: 0;
            right: 0;
        }

        .policy-practice-section-has-coverage-map .policy-practice-down-section {
            max-width: 740px;
        }
    }

    @media (min-width: 1201px) and (max-width: 1720px) {
        .policy-practice-section {
            padding-right: clamp(24px, 3vw, 44px);
            padding-left: clamp(24px, 3vw, 44px);
        }

        .policy-practice-section-has-coverage-map>.container {
            display: grid;
            grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
            grid-template-rows: auto auto;
            column-gap: clamp(28px, 3vw, 44px);
            align-items: start;
        }

        .policy-practice-section-has-coverage-map .policy-practice-top-section {
            display: contents;
        }

        .policy-practice-section-has-coverage-map .practice-top-left {
            grid-column: 1;
            grid-row: 1;
            min-width: 0;
        }

        .policy-practice-section-has-coverage-map .practice-top-right {
            position: static;
            grid-column: 2;
            grid-row: 1 / span 2;
            min-width: 0;
            padding-top: 0;
        }

        .policy-practice-section-has-coverage-map .policy-practice-down-section {
            grid-column: 1;
            grid-row: 2;
            min-width: 0;
            max-width: 100%;
        }

        .policy-practice-section-has-coverage-map .policy-chip-text {
            white-space: normal;
        }
    }

    @media (min-width: 1025px) and (max-width: 1200px) {
        .policy-practice-top-section {
            align-items: flex-start;
            gap: 30px
        }

        .practice-top-left,
        .practice-top-right {
            min-width: 0;
            flex: 1 1 0;
        }

        .practice-top-right {
            padding-top: 20px;
        }

        .policy-chips-div {
            gap: 12px;
        }

        .policy-practice-section-has-coverage-map .policy-practice-top-section {
            flex-direction: column;
        }

        .policy-practice-section-has-coverage-map .practice-top-left,
        .policy-practice-section-has-coverage-map .practice-top-right,
        .policy-practice-section-has-coverage-map .policy-practice-down-section {
            max-width: 799px;
        }
    }

    @media (min-width: 769px) and (max-width: 1200px) {

        .policy-practice-section-has-coverage-map .practice-top-left,
        .policy-practice-section-has-coverage-map .practice-top-right {
            max-width: 100%;
        }

        .policy-practice-section-has-coverage-map .policy-practice-coverage {
            margin-right: auto;
        }
    }

    @media (max-width: 1024px) {

        .practice-top-left,
        .practice-top-right,
        .practice-down-right {
            max-width: 100%;
        }

        .practice-top-right {
            padding-top: 0;
        }

        .policy-section-image {
            width: min(100%, 799px);
            height: auto;
        }

        .policy-practice-section .policy-chips-div {
            gap: 12px;
            margin-top: 20px;
        }

        .policy-practice-section .policy-chip {
            max-width: 100%;
        }

        .policy-practice-section .policy-chip-text {
            min-width: 0;
            white-space: normal;
        }

        .policy-practice-section .policy-chip-tooltip {
            width: min(320px, calc(100vw - 48px));
        }
    }

    @media (max-width: 600px) {
        .policy-practice-section {
            padding: 32px 20px;
        }

        .policy-practice-section .policy-chip {
            width: 100%;
            padding: 10px 14px;
            border-radius: 18px;
        }

        .policy-practice-section .practice-down-right,
        .policy-practice-section .practice-down-card {
            width: 100%;
            box-sizing: border-box;
        }

        .policy-practice-section-has-coverage-map .national-coverage-legend {
            padding: 14px 12px;
            font-size: 13px;
        }

        .policy-practice-section-has-coverage-map .national-coverage-legend-table th,
        .policy-practice-section-has-coverage-map .national-coverage-legend-table td {
            padding: 5px 6px;
        }

        .policy-practice-section-has-coverage-map .national-coverage-color {
            min-width: 54px;
        }
    }

    .policy-practice-section-relocated-activities .policy-practice-relocated-buttons {
        max-width: 729px;
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 24px;
        margin-top: 24px;
    }

    .policy-practice-section-relocated-activities .policy-practice-relocated-activities {
        max-width: 729px;
        width: 100%;
        margin-top: 28px;
    }

    .policy-practice-section-has-coverage-map .policy-practice-relocated-activities .policy-chips-div {
        margin-top: 20px;
    }

    .policy-practice-section-has-coverage-map .policy-practice-coverage {
        position: relative;
        max-width: 690px;
        width: 100%;
        margin-top: 28px;
        margin-left: auto;
    }

    .policy-practice-section-has-coverage-map .policy-practice-coverage-heading {
        padding-bottom: 16px;
        font-size: 22px;
    }

    .policy-practice-section-has-coverage-map .national-coverage-map {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 16px;
        pointer-events: none;
        shape-rendering: geometricPrecision;
        background-color: #062B55;
    }

    .policy-practice-section-has-coverage-map .national-coverage-map .national-coverage-state {
        stroke: #0D3270;
        stroke-width: 0.8px;
        stroke-linejoin: round;
        stroke-linecap: round;
        vector-effect: non-scaling-stroke;
    }

    .policy-practice-section-has-coverage-map .national-coverage-map path:not(.national-coverage-map-background) {
        transform-box: fill-box;
        transform-origin: center;
        stroke-linejoin: round;
        stroke-linecap: round;
    }

    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#1155CC"],
    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#6D9EEB"],
    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#C1E4F5"],
    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#434343"],
    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="white"],
    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#FFFFFF"] {
        stroke: #0d3270;
        stroke-width: 0.42px;
        vector-effect: non-scaling-stroke;
    }

    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#FFD000"] {
        transform: scale(1.65);
    }

    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#FFD000"]:nth-of-type(181) {
        transform: scale(3.4);
    }

    .policy-practice-section-has-coverage-map .national-coverage-map path[fill="#FDB913"] {
        display: none;
    }

    .policy-practice-section-has-coverage-map .national-coverage-data-star {
        fill: #FFD000;
        font-family: Arial, sans-serif;
        font-size: 20px;
        font-weight: 800;
        pointer-events: none;
    }

    .policy-practice-section-has-coverage-map .national-coverage-map .national-coverage-not-charter-state {
        stroke: #6f899d;
        stroke-width: 0.8px;
        vector-effect: non-scaling-stroke;
    }

    /* The source SVG incorrectly colors Illinois blue; the data marks it as None to date. */
    .policy-practice-section-has-coverage-map .national-coverage-map path:nth-of-type(63) {
        fill: #ffffff;
    }

    .policy-practice-section-has-coverage-map .national-coverage-legend {
        width: min(88%, 600px);
        box-sizing: border-box;
        gap: 5px;
        margin: 10px auto 0;
        padding: 9px 14px;
        font-size: 12px;
        line-height: 1.2;
    }

    .policy-practice-section-has-coverage-map .national-coverage-legend-table {
        width: min(100%, 400px);
    }

    .policy-practice-section-has-coverage-map .national-coverage-legend-table caption {
        margin-bottom: 4px;
        font-size: 16px;
    }

    .policy-practice-section-has-coverage-map .national-coverage-legend-table th,
    .policy-practice-section-has-coverage-map .national-coverage-legend-table td {
        padding: 2px 7px;
    }

    .policy-practice-section-has-coverage-map .national-coverage-legend-table thead .national-coverage-legend-description {
        padding: 0 0 6px;
        font-size: 14px;
    }

    .policy-practice-section-has-coverage-map .national-coverage-color {
        height: 14px;
    }

    .practice-down-card {
        padding: 20px 15px 10px;
        max-width: 337px;
        width: 100%;
        /* max-height: 346px; */
        height: 100%;
        background-color: #fff;
        box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.25);
        box-sizing: content-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 8px;
    }

    .practice-down-card p {
        padding-top: clamp(10px, calc(10px + 20 * ((100vw - 320px) / (1920 - 320))), 30px);
        padding-bottom: clamp(10px, calc(10px + 20 * ((100vw - 320px) / (1920 - 320))), 30px);
        /*     padding-bottom: clamp(10px, calc(10px + 52 * ((100vw - 320px) / (1920 - 320))), 62px); */
        color: var(--primary-heading-color)
    }

    .badge-div {
        display: flex;
        align-items: center;
        gap: 10px;
    }


    .badge-div img {
        max-width: 16px;
        max-height: 19px;
        object-fit: contain;
    }


    .practice-badge-heading {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary-heading-color)
    }

    .practice-down-card h3 {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary-heading-color);
        padding-top: clamp(10px, calc(10px + 10 * ((100vw - 320px) / (1920 - 320))), 20px);
        padding-bottom: clamp(10px, calc(10px + 10 * ((100vw - 320px) / (1920 - 320))), 20px);
    }

    .practice-down-card h2 {
        padding-bottom: clamp(10px, calc(10px + 40 * ((100vw - 320px) / (1920 - 320))), 50px);
    }

    .practice-down-link-div {
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 10px;
    }

    .practice-down-link-div a {
        text-decoration: none;
        font-size: 18px;
        color: #00A4E4;
    }

    .practice-down-link-div a:hover {
        text-decoration: underline;
    }

    .practice-down-link-icon {
        max-width: 14px;
        max-height: 10px;
        object-fit: contain;
    }

    /* POLICY & PRACTICE ENDS HERE */

    /* REBUILDING SECTION STARTS HERE */
    .rebuilding-section {
        width: 100%;
        max-height: 1043px;
        height: 100%;
        padding: clamp(20px, calc(20px + 15 * ((100vw - 320px) / (1920 - 320))), 35px) clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .rebuilding-section-main-div {
        display: flex;
    }

    .rebuilding-left-div {
        max-width: 969px;
        width: 100%;
        min-width: 0;
        padding-top: clamp(20px, calc(20px + 130 * ((100vw - 320px) / (1920 - 320))), 150px);
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .rebuilding-left-div h1 {
        max-width: 541px;
        width: 100%;
        /* font-size: clamp(20px, calc(20px + 35 * ((100vw - 320px) / (1920 - 320))), 50px); */
    }

    .rebuilding-left-div p {
        max-width: 679px;
        width: 100%;
        font-size: clamp(16px, calc(16px + 4 * ((100vw - 320px) / (1920 - 320))), 20px);
        color: var(--primary-text-color);
        font-weight: 400;
    }

    .rebuilding-right-div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px 13px;
        max-width: 820px;
        width: 100%;
        min-width: 0;
        min-height: 720px;
        height: 100%;
    }

    .rebuilding-repeater-card {
        border-radius: 8px;
        max-width: 398px;
        max-height: 480px;
        height: 100%;
        width: 100%;
        min-width: 0;
        border: 1px solid;
        border-top: 14px solid;
        padding: clamp(20px, calc(20px + 10 *((100vw - 320px) / (1920 - 320))), 30px) clamp(20px, calc(20px + 10 *((100vw - 320px) / (1920 - 320))), 30px) clamp(20px, calc(20px + 10 *((100vw - 320px) / (1920 - 320))), 30px) 20px;
    }

    .rebuilding-repeater-card:nth-child(1),
    .rebuilding-repeater-card:nth-child(4) {
        border-color: #00A4E4;
    }

    .rebuilding-repeater-card:nth-child(2) {

        border-color: #6CB33F;
    }

    .rebuilding-repeater-card:nth-child(3) {
        border-color: #FDB913;
    }

    .rebuilding-repeater-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .counter,
    .rebuilding-card-heading {
        font-size: clamp(16px, calc(16px + 8 * ((100vw - 320px) / (1920 - 320))), 24px);
        font-weight: 800;
    }

    .icon-background {
        padding: 24px;
        border-radius: 50%;
        max-width: 90px;
        max-height: 90px;
    }

    .rebuilding-repeater-card-bottom {
        height: 80%;
        /* padding-top: clamp(16px, calc(20px + 10 * ((100vw - 320px) / (1920 - 320))), 30px); */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .rebuilding-repeater-card-content {
        display: flex;
        flex-direction: column;
    }

    .rebuilding-hr {
        margin-top: clamp(10px, calc(10px + 10 * ((100vw - 320px) / (1920 - 320))), 20px);
        margin-bottom: clamp(10px, calc(10px + 19 * ((100vw - 320px) / (1920 - 320))), 29px);
    }

    .rebuilding-repeater-card:nth-child(1) .counter,
    .rebuilding-repeater-card:nth-child(4) .counter {
        color: #00A4E4;
    }

    .rebuilding-repeater-card:nth-child(2) .counter {
        color: #6CB33F;
    }

    .rebuilding-repeater-card:nth-child(3) .counter {
        color: #FDB913;
    }

    .rebuilding-repeater-card:nth-child(1) .icon-background,
    .rebuilding-repeater-card:nth-child(4) .icon-background {
        background-color: #ADE0EE;
    }

    .rebuilding-repeater-card:nth-child(2) .icon-background {
        background-color: #cbe5a7;
    }

    .rebuilding-repeater-card:nth-child(3) .icon-background {
        background-color: #FFF5E2;
    }

    .rebuilding-card-heading {
        color: var(--primary-heading-color);
        overflow-wrap: anywhere;
    }

    .rebuilding-card-details {
        color: #003767;
        font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / (1920 - 320))), 18px);
        font-weight: 400;
        overflow-wrap: anywhere;
    }

    .tube-light-right {
        border-radius: 7px;
        /* background-color: orange; */
        height: 5px;
        width: 40%;
        position: relative;
    }

    .rebuilding-repeater-card:nth-child(1) .tube-light-right,
    .rebuilding-repeater-card:nth-child(4) .tube-light-right {
        background-color: #00A4E4;
    }

    .rebuilding-repeater-card:nth-child(2) .tube-light-right {

        background-color: #6CB33F;
    }

    .rebuilding-repeater-card:nth-child(3) .tube-light-right {
        background-color: #FDB913;
    }

    /* REBUILDING SECTION ENDS HERE */

    /* FEATURED SECTION STARTS HERE */
    .featured-section {
        padding: clamp(20px, calc(20px + 15 * ((100vw - 320px) / (1920 - 320))), 35px) clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .featured-badge {
        text-transform: uppercase;
        color: var(--primary-heading-color);
    }

    .featured-heading-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .featured-empty-state {
        padding: clamp(36px, 6vw, 80px) 0;
        text-align: center;
    }

    .featured-empty-state h2 {
        margin: 0;
        color: var(--primary-heading-color);
    }

    .featured-swiper {
        width: 100%;
        overflow: hidden;
    }

    .featured-swiper .swiper-slide {
        height: auto;
    }

    .featured-carousel-nav {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .featured-carousel-arrow {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid #00a4e4;
        border-radius: 50%;
        background: transparent;
        color: #00a4e4;
        cursor: pointer;
        transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    }

    .featured-carousel-arrow svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .featured-carousel-arrow:hover,
    .featured-carousel-arrow:focus-visible {
        background-color: #00a4e4;
        color: #ffffff;
        outline: none;
    }

    .featured-carousel-arrow.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

    .featured-main {
        display: flex;
        padding-top: clamp(20px, calc(20px + 15 * ((100vw - 320px) / (1920 - 320))), 35px);
    }

    .featured-img-div {
        max-width: 767px;
        max-height: 745px;
        width: 100%;
        height: 100%;
    }

    .featured-img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        object-fit: contain;
    }

    .report-div {
        max-height: 600px;
        height: 100%;
        padding-top: clamp(20px, calc(20px + 98 * ((100vw - 320px) / (1920 - 320))), 118px);
        padding-left: clamp(20px, calc(20px + 72 * ((100vw - 320px) / (1920 - 320))), 92px);
    }

    .report-name {
        font-size: clamp(20px, calc(20px + 35 * ((100vw - 320px) / (1920 - 320))), 50px);
        max-width: 615px;
        width: 100%;
    }

    .report-detail {
        font-size: 18px;
        color: var(--primary-text-color);
        padding-top: clamp(20px, calc(20px + 15 * ((100vw - 320px) / (1920 - 320))), 35px);
        padding-bottom: clamp(20px, calc(20px + 25 * ((100vw - 320px) / (1920 - 320))), 45px);
        max-width: 581px;
        width: 100%;
    }

    .report-feature-div {
        max-width: 620px;
        width: 100%;
        gap: 28px;
        display: flex;
        align-items: center;
    }

    .report-feature-div strong {
        text-transform: uppercase;
    }

    .feature-type {
        font-size: 18px;
        color: var(--primary-text-color);
    }

    .feature-btn {
        max-width: 190px;
    }

    /* FEATURED SECTION ENDS HERE */
    /* ALTERNATIVE SCHOOL SECTION STARTS HERE */
    .alternative-school-section {
        padding: clamp(20px, calc(20px + 15 * ((100vw - 320px) / (1920 - 320))), 35px) clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .alternative-school-inner {
        display: flex;
        justify-content: space-between;
        gap: clamp(30px, calc(30px + 50 * ((100vw - 320px) / (1920 - 320))), 80px);
    }

    .alternative-school-content {
        max-width: 690px;
        width: 100%;
    }

    .alternative-featured-badge {
        text-transform: uppercase;
        color: #00A4E4;
    }

    .alternative-school-heading {
        max-width: 650px;
        width: 100%;
        padding-top: clamp(15px, calc(15px + 67 * ((100vw - 320px) / (1920 - 320))), 72px);
        color: var(--primary-heading-color);
        font-size: clamp(20px, calc(20px + 30 * ((100vw - 320px) / (1920 - 320))), 50px);
    }

    .alternative-school-paragraph {
        max-width: 650px;
        width: 100%;
        padding-top: clamp(15px, calc(15px + 67 * ((100vw - 320px) / (1920 - 320))), 72px);
        color: var(--primary-text-color);
        font-size: 18px;
        line-height: 1.5;
    }

    .alternative-school-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding-top: clamp(20px, calc(20px + 25 * ((100vw - 320px) / (1920 - 320))), 45px);
    }

    .alternative-school-list-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .alternative-school-list-item svg {
        width: 11px;
        height: 11px;
        object-fit: contain;
        flex: 0 0 34px;
    }

    .alternative-school-list-content {
        color: var(--primary-text-color);
        font-size: 18px;
    }

    .alternative-school-btn {
        margin-top: clamp(22px, calc(22px + 24 * ((100vw - 320px) / (1920 - 320))), 46px);
    }
.alternative-school-btn img{
	filter: invert(48%) sepia(97%) saturate(1356%) hue-rotate(165deg) brightness(95%) contrast(101%);
	    transition: 0.3s ease;
} 
.alternative-school-btn:hover img {
    filter: none;
}
    .alternative-school-image-div {
        max-width: 845px;
        width: 100%;
    }

    .alternative-school-image {
        width: 100%;
        height: 100%;
        display: block;
        /*     object-fit: contain; */
    }

    /* ALTERNATIVE SCHOOL SECTION ENDS HERE */

    /* REPORT SECTION SECTION STARTS HERE */
    .report-section {
        padding: clamp(20px, calc(20px + 41 * ((100vw - 320px) / (1920 - 320))), 61px) clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .report-section .container {
        max-width: 1453px;
    }

    .report-section h1 {
        margin-bottom: 0;
    }

    .report-search-div {
        display: grid;
        grid-template-columns: 60px minmax(0, 1fr) 156px;
        align-items: center;
        gap: 20px;
        padding-top: clamp(18px, calc(18px + 7 * ((100vw - 320px) / (1920 - 320))), 25px);
        padding-bottom: clamp(18px, calc(18px + 11 * ((100vw - 320px) / (1920 - 320))), 29px);
    }

    .report-search-layer {
        width: 48px;
        height: 34px;
        display: block;
    }

    .report-search-input-wrap {
        min-height: 54px;
        max-height: 54px;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 16px;
        border: 1px solid #00AEEF;
        border-radius: 8px;
        background-color: #fff;
    }

    .report-search-input-wrap:active,
    .report-search-input-wrap:focus-within {
        border: 1px solid #00AEEF;
        box-shadow: 0 4px 12px rgba(0, 174, 239, 0.18);
    }

    .report-search-submit {
        width: 22px;
        height: 22px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #003768;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 22px;
    }

    .report-search-input {
        width: 100%;
        border: 0;
        outline: 0;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
        background: transparent;
        color: var(--primary-text-color);
        font-size: 14px;
        font-family: inherit;
    }

    .report-search-input::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    .report-search-input::placeholder {
        color: #A7A7A7;
    }

    .report-sort-select {
        min-height: 54px;
        min-width: 165px;
        width: 100%;
        padding: 13px 20px;
        border: 1px solid #00AEEF;
        border-radius: 8px;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23003768' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        appearance: none;
        -webkit-appearance: none;
        color: #003768;
        font-size: 14px;
        font-weight: 800;
        font-family: inherit;
        cursor: pointer;
    }

    .report-sort-select:active,
    .report-sort-select:focus {
        box-shadow: 0 4px 12px rgba(0, 174, 239, 0.18);
        border: 1px solid #00AEEF;
        outline: 0;
    }

    .report-category-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        padding-bottom: clamp(20px, calc(20px + 12 * ((100vw - 320px) / (1920 - 320))), 32px);
    }

    .report-child-category-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: -18px;
        padding-bottom: 32px;
    }

    .report-child-category-tabs[hidden],
    .report-child-category-tab[hidden] {
        display: none;
    }

    .report-child-category-tab {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 8px 12px;
        border: 1px solid #00a4e4;
        border-radius: 999px;
        color: var(--primary-heading-color);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }

    .report-child-category-tab:hover,
    .report-child-category-tab.is-active {
        background: #00a4e4;
        color: #fff;
    }

    .report-category-tab {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 11px 13px;
        border-radius: 8px;
        background-color: #F8F8F8;
        color: var(--primary-heading-color);
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 0.5px 9px 0 rgba(0, 0, 0, 0.25);
    }

    .report-category-tab.is-active,
    .report-category-tab:hover {
        background-color: #003768;
        color: #fff;
    }

    .report-resource-list {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .report-resource-card {
        display: grid;
        grid-template-columns: 155px minmax(0, 1fr) 80px;
        align-items: center;
        gap: clamp(24px, calc(22px + 70 * ((100vw - 320px) / (1920 - 320))), 92px);
        max-width: 1453px;
        width: 100%;
        max-height: 230px;
        height: 100%;
        padding: clamp(20px, calc(20px + 3 * ((100vw - 320px) / (1920 - 320))), 23px) clamp(20px, calc(20px + 57 * ((100vw - 320px) / (1920 - 320))), 77px);
        border: 1px solid #00A4E4;
        border-radius: 8px;
        background-color: #E6F6FA;
    }

    .report-resource-card-no-image {
        grid-template-columns: minmax(0, 1fr) 80px;
    }

    .report-resource-image {
        width: 178px;
        height: 184px;
        display: block;
    }

    .report-resource-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 8px;
    }

    .report-resource-content {
        min-width: 0;
        max-width: 869px;
        width: 100%;
    }

    .report-resource-meta {
        /*     display: flex; */
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        color: var(--primary-text-color);
        font-size: 18px;
        font-weight: 800;
    }

    .report-resource-meta span:first-child {
        color: #003768;
        font-weight: 800;
        text-transform: uppercase;
    }

    .report-resource-title {
        padding-top: 12px;
        font-size: clamp(18px, calc(18px + 6 * ((100vw - 320px) / (1920 - 320))), 24px);
        line-height: 1.25;
    }

    .report-resource-title a {
        color: #003768;
        text-decoration: none;
    }

    .report-resource-excerpt {
        padding-top: 12px;
        color: var(--primary-text-color);
        font-size: 18px;
    }

    .report-resource-read {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        color: #00AEEF;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
    }

    .report-resource-read svg {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .report-resource-read:hover {
        text-decoration: underline;
    }

    .report-resource-empty {
        color: var(--primary-text-color);
        font-size: 18px;
    }

    .report-pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding-top: 32px;
    }

    .report-pagination-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        min-height: 42px;
        padding: 8px 12px;
        border: 1px solid #003768;
        border-radius: 8px;
        color: #003768;
        font-size: 16px;
        font-weight: 800;
        text-decoration: none;
    }

    .report-pagination-link.is-active,
    .report-pagination-link:hover {
        background-color: #003768;
        color: #fff;
    }

    /* REPORT SECTION SECTION ENDS HERE */

    /* RESPONSIVE */


    @media(min-width:1201px) and (max-width:1600px) {
        .hero-left {
            max-width: 640px;
        }

        /* EMPOWER COMPONENT STARTS HERE */
        .empower-card {
            max-height: 100%;
        }

        /* EMPOWER COMPONENT ENDS HERE */

        /* PROCESS COMPONENT START S HERE */
        .process-div {
            grid-template-columns: repeat(5, minmax(0, 1fr));
            column-gap: 18px;
        }

        .dashed {
            left: calc(50% + 36px);
            width: calc(100% - 72px);
        }

        .process-paragh {
            max-width: 180px;
        }

        .process-section-imag {
            max-width: 100%;
        }

        /* PROCESS COMPONENT END S HERE */
        /* DATA AND RESEARCH COMPONENT STARTS HERE */
        .data-and-research-component-inner {
            gap: clamp(20px, calc(20px + 30 * (((100vw - 320px) / (1920 - 320)))), 50px);
        }

        .map-wrapper svg {
            width: 600px;
        }

        /* DATA AND RESEARCH COMPONENT ENDS HERE */
        /* FOUR AREAS ONE GOAL STARTS HERE */
        .four-area-card-main {
            column-gap: clamp(30px, calc(30px + 260 * ((100vw - 320px) / (1920 - 320))), 290px);
        }

        /* FOUR AREAS ONE GOAL ENDS HERE */


    }

    @media(max-width:1200px) {


        /* PROCESS COMPONENT START S HERE */
        .process-component-section {
            max-height: none;
        }

        .process-div {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            row-gap: 36px;
            column-gap: 24px;
        }

        .process {
            align-items: center;
        }

        .process:nth-child(3n) .dashed {
            display: none;
        }

        .process:last-child .dashed {
            display: none;
        }

        .dashed {
            left: calc(50% + 32px);
            width: calc(100% - 64px);
            top: 26px;
        }

        .process-paragh {
            max-width: 190px;
        }

        .process-section-imag {
            max-width: 100%;
            margin-top: 40px;
        }

        /* PROCESS COMPONENT END S HERE */

        /* DATA AND RESEARCH COMPONENT STARTS HERE */
        .data-and-research-component-inner {
            gap: clamp(20px, calc(20px + 30 * (((100vw - 320px) / (1920 - 320)))), 50px);
            flex-direction: column;
        }

        .map-wrapper {
            padding-top: 0px;
        }

        /* DATA AND RESEARCH COMPONENT ENDS HERE */
        /* FOUR AREAS ONE GOAL STARTS HERE */
        .four-area-card-main {
            column-gap: 30px;
        }

        /* FOUR AREAS ONE GOAL ENDS HERE */

        /* REPORT SECTION STARTS HERE */
        .report-search-div {
            grid-template-columns: 48px minmax(0, 1fr);
        }

        .report-sort-select {
            grid-column: 2;
            max-width: 156px;
        }

        .report-resource-card {
            grid-template-columns: 130px minmax(0, 1fr);
            gap: 24px;
            padding: 24px;
            max-height: 100%;
        }

        .report-resource-card-no-image {
            grid-template-columns: minmax(0, 1fr);
        }

        .report-resource-read {
            grid-column: 2;
            justify-content: flex-start;
        }

        .report-resource-card-no-image .report-resource-read {
            grid-column: 1;
        }

        .report-resource-image {
            height: 100%;
            width: 100%;
        }

        /* REPORT SECTION ENDS HERE */

    }

    @media(min-width:769px) and (max-width:1200px) {
        .under-line {
            display: inline-block;
        }

        .under-line::after {
            bottom: -8px;
            height: 16px;
            background-size: 100% 100%;
        }

        .page-areas-of-focus .under-line::after {
            bottom: 0;
        }

        .hero-left {
            max-width: 100%;
            margin-top: 50px;
        }

        .research-card:nth-child(1) {
            margin-left: 0;
        }

        .hero-right-cards-main {
            grid-template-columns: repeat(2, minmax(250px, 500px));
        }

        /* PROCESS COMPONENT START S HERE */
        .process-div {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        /* PROCESS COMPONENT END S HERE */
        /* REBUILDING SECTION STARTS HERE */
        .rebuilding-section {
            max-height: 100%;
        }

        .rebuilding-section-main-div {
            flex-direction: column;
            gap: 30px;
        }

        .rebuilding-left-div {
            padding-top: 0px;
        }

        .rebuilding-right-div {
            max-width: 100%;
        }

        .rebuilding-repeater-card {
            max-width: 335px;
        }

        .rebuilding-repeater-card-bottom {
            justify-content: unset;
            gap: 10px;
        }

        /* REBUILDING SECTION ENDS HERE */

    }

    @media(min-width:769px) and (max-width:1024PX) {

        /* HERO SECTION STARTS HERE*/
        .hero-section-inner,
        .page-resources .hero-section-inner {
            flex-direction: column;
            height: auto;
            gap: 30px;
        }

        .page-databases .hero-right {
            display: flex;
            justify-content: center;
        }

        .schools-database-map {
            justify-self: center;
        }

        /* HERO SECTION ENDS HERE*/
        /* DATA AND RESEARCH COMPONENT STARTS HERE */
        .data-and-research-component-inner {
            flex-direction: column;
        }

        .map-wrapper svg {
            width: 100%;
        }

        /* DATA AND RESEARCH COMPONENT ENDS HERE */
        /* POLICY & PRACTICE STARTS HERE */
        .policy-practice-top-section,
        .policy-practice-down-section {
            flex-direction: column;
            gap: 30px;
        }

        /* POLICY & PRACTICE ENDS HERE */
        /* REBUILDING SECTION STARTS HERE */
        .rebuilding-section {
            max-height: 100%;
        }

        .rebuilding-section-main-div {
            flex-direction: column;
            gap: 30px;
        }

        .rebuilding-left-div {
            padding-top: 0px;
        }

        .rebuilding-right-div {
            max-width: 100%;
        }

        .rebuilding-repeater-card-bottom {
            justify-content: unset;
            gap: 10px;
        }

        /* REBUILDING SECTION ENDS HERE */
        /* ALTERNATIVE SCHOOL SECTION STARTS HERE */
        .alternative-school-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .alternative-school-content,
        .alternative-school-image-div {
            max-width: 100%;
        }

        /* ALTERNATIVE SCHOOL SECTION ENDS HERE */
    }

    @media(min-width:601px) and (max-width:768px) {

        /* HERO SECTION STARTS HERE*/
        .hero-section-inner,
        .page-resources .hero-section-inner {
            flex-direction: column;
            height: auto;
            gap: 30px;
            padding-top: 100px;
        }

        /* RESEARCH COMPONENT STARTS HERE */
        .research-component-inner {
            flex-direction: column;
            gap: 30px;
        }

        .research-cards-main {
            grid-template-columns: auto;
        }

        .research-card {
            padding-left: 0;
            padding-right: 0;
        }


        .research-card:nth-child(1) {
            margin-left: 0;
        }

        /* RESEARCH COMPONENT ENDS HERE */
        /* DATA AND RESEARCH COMPONENT STARTS HERE */
        .data-and-research-component-inner {
            flex-direction: column;
        }

        .map-wrapper svg {
            width: 100%;
        }

        /* DATA AND RESEARCH COMPONENT ENDS HERE */
        /* EMPOWER COMPONENT STARTS HERE */
        .empower-component-right {
            width: 100%;
        }

        .empower-component-inner {
            flex-direction: column;
            gap: 30px;
        }


        .empower-card-main {
            grid-template-columns: repeat(1, 1fr);
        }

        /* EMPOWER COMPONENT ENDS HERE */

        /* PROCESS COMPONENT START S HERE */
        .process-component-section {
            max-height: none;
        }

        .process-div {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            row-gap: 32px;
            column-gap: 20px;
        }

        .process .dashed {
            display: none;
        }

        .process-paragh {
            max-width: 220px;
        }

        .process-section-imag {
            max-width: 100%;
            margin-top: 32px;
        }

        /* PROCESS COMPONENT END S HERE */
        /* MEANINGFUL COMPONENT STARTS HERE */
        .meaningful-component-inner {
            flex-direction: column;
        }

        .meaningful-component-inner {
            max-height: 100%;
        }

        /* MEANINGFUL COMPONENT ENDS HERE */
        /* FOUR AREAS ONE GOAL STARTS HERE */
        .four-area-card-main {
            grid-template-columns: 1fr;
        }

        .four-areas-inner {
            flex-direction: column;
            gap: 15px;
        }

        /* FOUR AREAS ONE GOAL ENDS HERE */
        /* POLICY & PRACTICE STARTS HERE */
        .policy-practice-top-section,
        .policy-practice-down-section {
            flex-direction: column;
            gap: 30px;
        }

        .policy-practice-down-section {
            padding-top: 40px;
        }

        .practice-down-card {
            height: auto;
        }

        /* POLICY & PRACTICE ENDS HERE */
        /* REBUILDING SECTION STARTS HERE */
        .rebuilding-section {
            max-height: 100%;
        }

        .rebuilding-section-main-div {
            flex-direction: column;
            gap: 30px;
        }

        .rebuilding-left-div {
            padding-top: 0px;
        }

        .rebuilding-right-div {
            max-width: 100%;
        }

        .rebuilding-repeater-card-bottom {
            justify-content: unset;
            gap: 10px;
        }

        /* REBUILDING SECTION ENDS HERE */
        /* FEATURED SECTION START HERE */
        .featured-main {
            flex-direction: column;
        }

        /* FEATURED SECTION ENDS HERE */
        /* ALTERNATIVE SCHOOL SECTION STARTS HERE */
        .alternative-school-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .alternative-school-content,
        .alternative-school-image-div {
            max-width: 100%;
        }

        /* ALTERNATIVE SCHOOL SECTION ENDS HERE */
        .page-databases .hero-right {
            display: flex;
            justify-content: center;
        }

        .schools-database-map {
            justify-self: center;
        }
    }

    @media(max-width:600px) {
        /* .hero-section-has-image::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 37, 73, 0.2);
            pointer-events: none;
        } */


        .page-databases .hero-right {
            display: flex;
            justify-content: center;
        }

        .schools-database-map {
            justify-self: center;
        }

        /* HERO SECTION STARTS HERE*/
        .hero-section-inner,
        .page-resources .hero-section-inner {
            height: auto;
            gap: 30px;
        }

        .hero-section-inner,
        .hero-btn {
            flex-direction: column;
        }

        .hero-btn {
            width: 100%;

        }

        .hero-right-cards-main {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(4, minmax(150px, 250px));
        }

        .hero-card,
        .hero-right {
            width: 100%;
        }

        /* HERO SECTION ENDS HERE*/

        .rebuilding-repeater-card {
            max-width: 350px;
        }

        /* RESEARCH COMPONENT STARTS HERE */
        .research-component-inner {
            flex-direction: column;
            gap: 30px;
        }

        .research-cards-main {
            grid-template-columns: auto;
        }

        .research-card {
            padding-left: 0;
            padding-right: 0;
            border-right: none;
        }

        .research-card:nth-child(1) {
            border-top: none;
            border-left:none;
            margin-left: 0;
        }

        /* RESEARCH COMPONENT ENDS HERE */
        /* EMPOWER COMPONENT STARTS HERE */
        .empower-component-right {
            width: 100%;
        }

        .empower-component-inner {
            flex-direction: column;
            gap: 30px;
        }



        .empower-card-main {
            grid-template-columns: repeat(1, 1fr);
        }

        /* EMPOWER COMPONENT ENDS HERE */

        /* DATA AND RESEARCH COMPONENT STARTS HERE */
        .data-and-research-component-inner {
            flex-direction: column;
        }

        .map-wrapper svg {
            width: 100%;
        }

        /* DATA AND RESEARCH COMPONENT ENDS HERE */

        /* PROCESS COMPONENT START S HERE */
        .process-component-section {
            max-height: none;
        }

        .process-div {
            grid-template-columns: repeat(1, minmax(0, 1fr));
            row-gap: 28px;
        }

        .process .dashed {
            display: none;
        }

        .process-paragh {
            max-width: 240px;
        }

        .process-section-imag {
            max-width: 100%;
            margin-top: 28px;
        }

        /* PROCESS COMPONENT END S HERE */
        /* MEANINGFUL COMPONENT STARTS HERE */
        .meaningful-component-inner {
            flex-direction: column;
        }

        .meaningful-component-inner {
            max-height: 100%;
        }

        /* MEANINGFUL COMPONENT ENDS HERE */
        /* FOUR AREAS ONE GOAL STARTS HERE */
        .four-area-card-main {
            grid-template-columns: 1fr;
        }

        .four-areas-inner {
            flex-direction: column;
            gap: 15px;
        }

        .four-area-category-ul {
            flex-direction: column;
            gap: 10px;
        }

        .fr-card-content-resource-div {
            display: block;
        }

        /* FOUR AREAS ONE GOAL ENDS HERE */
        /* POLICY & PRACTICE STARTS HERE */
        .policy-practice-top-section,
        .policy-practice-down-section {
            flex-direction: column;
            gap: 30px;
        }

        .policy-practice-down-section {
            padding-top: 40px;
        }

        .practice-down-right {
            flex-direction: column;
        }

        .practice-down-card {
            max-width: 100%;
            width: auto;
        }

        .policy-chip {
            width: 100%;
        }

        .policy-chip-text {
            white-space: pre-wrap;
        }

        /* POLICY & PRACTICE ENDS HERE */
        /* REBUILDING SECTION STARTS HERE */
        .rebuilding-section {
            max-height: 100%;
        }

        .rebuilding-section-main-div {
            flex-direction: column;
            gap: 30px;
        }

        .rebuilding-left-div {
            padding-top: 0px;
        }

        .rebuilding-right-div {
            max-width: 100%;
            grid-template-columns: minmax(0, 1fr);
        }

        .rebuilding-repeater-card-bottom {
            justify-content: unset;
            gap: 10px;
        }

        /* REBUILDING SECTION ENDS HERE */

        /* FEATURED SECTION START HERE */
        .featured-main {
            flex-direction: column;
        }

        .report-feature-div {
            flex-wrap: wrap;
        }

        /* FEATURED SECTION ENDS HERE */
        /* ALTERNATIVE SCHOOL SECTION STARTS HERE */
        .alternative-school-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .alternative-school-content,
        .alternative-school-image-div {
            max-width: 100%;
        }

        /* ALTERNATIVE SCHOOL SECTION ENDS HERE */
        /* REPORT SECTION STARTS HERE */
        .report-search-div {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .report-search-layer {
            width: 42px;
        }

        .report-sort-select {
            grid-column: auto;
            max-width: none;
        }

        .report-category-tabs {
            gap: 10px;
        }

        .report-resource-card {
            display: flex;
            flex-direction: column;
            align-items: unset;
            gap: 18px;
            height: auto;
            min-height: 230px;
            padding: 22px;
        }

        .report-resource-image {
            width: 120px;
            height: 120px;
        }

        .report-resource-read {
            justify-content: flex-start;
        }

        /* REPORT SECTION ENDS HERE */

    }

    /* TEST */
    .map-point {
        cursor: default;
        outline: none;
        transform: scale(0.55);
        transform-box: fill-box;
        transform-origin: center;
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    .map-point:focus,
    .map-point:focus-visible {
        outline: none;
    }

    .map-point.is-active {
        transform: scale(1);
    }

    .map-point.is-active path:first-child {
        fill: #00A4E4;
        opacity: 1;
    }

    .map-point.is-active path:nth-child(3) {
        fill: #ffffff;
        opacity: 1;
    }

    .data-and-research-component-section svg g[data-state],
    .data-and-research-component-section svg g.map-point,
    .data-and-research-component-section svg path {
        pointer-events: none;
        cursor: default;
    }

    /* DATABASE PAGE */
    /* Section ONE */
    .page-databases .hero-right img {
        max-width: 743px;
    }

    .page-databases .hero-right {
        margin-left: auto;
    }

    .page-databases .hero-left {
        max-width: 600px;
    }

    .page-databases .hero-left h1 {
        font-size: clamp(25px,
                calc(25px + 25 * ((100vw - 320px) / (1920 - 320))),
                50px);
        font-weight: 800;
        margin-bottom: 55px;
    }

    .page-databases .hero-sub-text {
        max-width: 565px;
        font-size: 18px;
        font-weight: 300;
        color: var(--primary-text-color);
        letter-spacing: 0%;
        margin-bottom: 0;
        line-height: 34px;
    }

    .page-databases .hero-section-inner {
        height: auto;
        display: flex;
        align-items: center;
        padding: clamp(20px,
                calc(20px + 100 * ((100vw - 320px) / (1900 - 320))),
                120px);
        min-height: 837px;
    }

    @media (max-width: 1440px) {
        .page-databases .hero-section-inner {
            min-height: 100%;
        }
    }


    @media (max-width: 1024px) {
        .page-databases .hero-section-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .page-databases .hero-left {
            display: contents;
            max-width: 100%;
        }

        .page-databases .hero-left h1 {
            order: 1;
            width: 100%;
            margin: 50px 0 0 0;
        }

        .page-databases .hero-right {
            order: 2;
            width: 100%;
            margin-right: auto;
            margin-left: 0;
        }

        .page-databases .hero-sub-text {
            order: 3;
            max-width: 100%;
            width: 100%;
        }

        .page-databases .hero-btn {
            order: 4;
        }

        .research-component-inner {
            gap: 30px;
        }
    }

    /* DATABASE PAGE */
    /* Section TWO */
    .page-databases .databases-work-together-section {
        position: relative;
        min-height: 1050px;
        overflow: hidden;
        isolation: isolate;
        background-color: #f8fafc;
    }

    .page-databases .databases-work-together-section::before,
    .page-databases .databases-work-together-section::after {
        content: "";
        position: absolute;
        z-index: -1;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(16px);
        opacity: 0.38;
        animation: databasesVennGlow 14s ease-in-out infinite alternate;
    }

    .page-databases .databases-work-together-section::before {
        top: 8%;
        left: -260px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 68%);
    }

    .page-databases .databases-work-together-section::after {
        right: -260px;
        bottom: 0;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 68%);
        animation-delay: -7s;
    }

    .page-databases .databases-work-together-inner {
        min-height: 1050px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: clamp(70px, 7vw, 120px) clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
        text-align: center;
    }

    .page-databases .databases-work-together-content {
        max-width: 980px;
        width: 100%;
        margin: 0 auto clamp(35px, 4vw, 60px);
    }

    .page-databases .databases-work-together-content h1 {
        font-size: clamp(25px,
                calc(25px + 25 * ((100vw - 320px) / (1920 - 320))),
                50px);
        font-weight: 800;
        color: var(--primary-heading-color);
        margin: 0 0 50px;
    }

    .page-databases .databases-work-together-content p {
        max-width: 980px;
        font-size: 16px;
        font-weight: 300;
        line-height: 34px;
        color: var(--primary-text-color);
        margin: 0 auto;
    }

    .page-databases .databases-work-together-image {
        max-width: 1092px;
        width: 100%;
        margin: 0 auto;
    }

    .page-databases .databases-work-together-image img {
        display: block;
        width: 100%;
        height: auto;
    }

    .page-databases .databases-venn {
        --venn-glow-x: 50%;
        --venn-glow-y: 45%;
        position: relative;
        width: min(1200px, 100%);
        height: 700px;
        margin: 0 auto;
        border: 1px solid rgba(148, 163, 184, 0.18);
        border-radius: 36px;
        background:
            radial-gradient(circle at var(--venn-glow-x) var(--venn-glow-y), rgba(255, 255, 255, 0.96) 0, rgba(239, 246, 255, 0.76) 26%, transparent 55%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(241, 245, 249, 0.52));
        box-shadow: 0 32px 90px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        text-align: left;
        isolation: isolate;
        overflow: hidden;
    }

    .page-databases .databases-venn::before {
        content: "";
        position: absolute;
        inset: -35%;
        z-index: -2;
        background: conic-gradient(from 120deg, rgba(147, 197, 253, 0.14), rgba(125, 211, 252, 0.04), rgba(139, 92, 246, 0.13), rgba(147, 197, 253, 0.14));
        animation: databasesVennAmbient 24s linear infinite;
    }

    .page-databases .databases-venn-cursor-glow {
        position: absolute;
        left: var(--venn-glow-x);
        top: var(--venn-glow-y);
        z-index: -1;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(125, 211, 252, 0.2), transparent 68%);
        filter: blur(8px);
        transform: translate(-50%, -50%);
        pointer-events: none;
        transition: left 0.25s ease-out, top 0.25s ease-out;
    }

    .page-databases .databases-venn-orb {
        --venn-parallax-x: 0px;
        --venn-parallax-y: 0px;
        --venn-enter-y: 34px;
        --venn-scale: 0.94;
        position: absolute;
        z-index: 2;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        opacity: 0;
        outline: none;
        cursor: pointer;
        transform: translate3d(var(--venn-parallax-x), calc(var(--venn-parallax-y) + var(--venn-enter-y)), 0) scale(var(--venn-scale));
        transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
        will-change: transform, opacity, filter;
    }

    .page-databases .databases-venn.is-venn-visible .databases-venn-orb {
        --venn-enter-y: 0px;
        --venn-scale: 1;
        opacity: 1;
    }

    .page-databases .databases-venn-orb-schools {
        left: calc(50% - 180px);
        top: 28px;
        color: #075985;
        transition-delay: 0.08s;
    }

    .page-databases .databases-venn-orb-policies {
        left: calc(50% - 300px);
        top: 260px;
        color: #047857;
        transition-delay: 0.18s;
    }

    .page-databases .databases-venn-orb-performance {
        left: calc(50% - 60px);
        top: 260px;
        color: #6d28d9;
        transition-delay: 0.28s;
    }

    .page-databases .databases-venn-orb-surface {
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: inherit;
        background: linear-gradient(145deg, rgba(147, 197, 253, 0.48), rgba(59, 130, 246, 0.2));
        box-shadow: inset 0 0 55px rgba(255, 255, 255, 0.3), 0 20px 55px rgba(59, 130, 246, 0.12);
        backdrop-filter: blur(8px);
        animation: databasesVennOrbDrift 7s ease-in-out infinite alternate;
        transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .page-databases .databases-venn-orb-policies .databases-venn-orb-surface {
        background: linear-gradient(145deg, rgba(167, 243, 208, 0.38), rgba(125, 211, 252, 0.2));
        box-shadow: inset 0 0 55px rgba(255, 255, 255, 0.32), 0 20px 55px rgba(16, 185, 129, 0.1);
        animation-delay: -2.2s;
    }

    .page-databases .databases-venn-orb-performance .databases-venn-orb-surface {
        background: linear-gradient(145deg, rgba(196, 181, 253, 0.42), rgba(139, 92, 246, 0.2));
        box-shadow: inset 0 0 55px rgba(255, 255, 255, 0.32), 0 20px 55px rgba(139, 92, 246, 0.12);
        animation-delay: -4.5s;
    }

    .page-databases .databases-venn-orb-content {
        position: relative;
        z-index: 2;
        width: 210px;
        margin: 48px auto 0;
        text-align: center;
        pointer-events: none;
    }

    .page-databases .databases-venn-orb-policies .databases-venn-orb-content,
    .page-databases .databases-venn-orb-performance .databases-venn-orb-content {
        margin-top: 155px;
    }

    .page-databases .databases-venn-orb-icon {
        display: inline-flex;
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }

    .page-databases .databases-venn-orb-icon svg,
    .page-databases .databases-venn-card-icon svg,
    .page-databases .databases-venn-center svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .page-databases .databases-venn-orb h3 {
        margin: 0 0 9px;
        color: #0f172a;
        font-size: 20px;
        font-weight: 800;
    }

    .page-databases .databases-venn-orb p {
        margin: 0;
        color: #334155;
        font-size: 13px;
        line-height: 1.55;
    }

    .page-databases .databases-venn.is-venn-interacting .databases-venn-orb:not(.is-related) {
        opacity: 0.48;
        filter: blur(1.2px) saturate(0.72);
    }

    .page-databases .databases-venn-orb.is-related {
        --venn-scale: 1.03;
        z-index: 5;
        filter: saturate(1.16);
        transition-delay: 0s;
    }

    .page-databases .databases-venn-orb.is-related .databases-venn-orb-surface {
        border-color: rgba(255, 255, 255, 1);
        background: linear-gradient(145deg, rgba(96, 165, 250, 0.58), rgba(59, 130, 246, 0.32));
        box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.35), 0 24px 70px rgba(59, 130, 246, 0.26), 0 0 30px rgba(125, 211, 252, 0.28);
    }

    .page-databases .databases-venn-orb-policies.is-related .databases-venn-orb-surface {
        background: linear-gradient(145deg, rgba(110, 231, 183, 0.5), rgba(125, 211, 252, 0.3));
    }

    .page-databases .databases-venn-orb-performance.is-related .databases-venn-orb-surface {
        background: linear-gradient(145deg, rgba(167, 139, 250, 0.56), rgba(139, 92, 246, 0.32));
    }

    .page-databases .databases-venn-orb:focus-visible {
        outline: 3px solid #2563eb;
        outline-offset: 5px;
    }

    .page-databases .databases-venn-center {
        position: absolute;
        left: 50%;
        top: 48.5%;
        z-index: 8;
        width: 158px;
        height: 158px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 18px;
        border: 1px solid rgba(147, 197, 253, 0.38);
        border-radius: 50%;
        background: linear-gradient(145deg, #172554, #0f172a);
        color: #ffffff;
        text-align: center;
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.78);
        box-shadow: 0 18px 55px rgba(15, 23, 42, 0.35), 0 0 0 10px rgba(59, 130, 246, 0.05);
        transition: opacity 0.65s ease 0.78s, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.78s, filter 0.3s ease;
        animation: databasesVennBadgePulse 4s ease-in-out infinite;
    }

    .page-databases .databases-venn.is-venn-visible .databases-venn-center {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .page-databases .databases-venn-center.is-bright {
        filter: brightness(1.2);
    }

    .page-databases .databases-venn-center span {
        width: 31px;
        height: 31px;
        margin-bottom: 8px;
        color: #fbbf24;
    }

    .page-databases .databases-venn-center strong {
        color: #ffffff;
        font-size: 12px;
        line-height: 1.42;
    }

    .page-databases .databases-venn-card {
        position: absolute;
        z-index: 12;
        width: 245px;
        opacity: 0;
        outline: none;
        transform: translateY(28px) scale(0.97);
        transition: opacity 0.55s ease, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
        will-change: transform, opacity;
    }

    .page-databases .databases-venn-card-schools-policies {
        left: 18px;
        top: 192px;
        transition-delay: 0.38s;
    }

    .page-databases .databases-venn-card-schools-performance {
        right: 18px;
        top: 192px;
        transition-delay: 0.48s;
    }

    .page-databases .databases-venn-card-policies-performance {
        right: 0;
        top: 445px;
        transition-delay: 0.58s;
    }

    .page-databases .databases-venn-card-all {
        left: 50%;
        bottom: 5px;
        width: 430px;
        transform: translate(-50%, 28px) scale(0.97);
        transition-delay: 0.68s;
    }

    .page-databases .databases-venn.is-venn-visible .databases-venn-card {
        opacity: 0.9;
        transform: translateY(0) scale(1);
    }

    .page-databases .databases-venn.is-venn-visible .databases-venn-card-all {
        transform: translate(-50%, 0) scale(1);
    }

    .page-databases .databases-venn-card-body {
        min-height: 132px;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        align-items: flex-start;
        padding: 20px;
        border: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        animation: databasesVennCardFloat 6s ease-in-out infinite alternate;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .page-databases .databases-venn-card:nth-of-type(even) .databases-venn-card-body {
        animation-delay: -3s;
    }

    .page-databases .databases-venn-card-all .databases-venn-card-body {
        min-height: 94px;
        align-items: center;
    }

    .page-databases .databases-venn-card-icon {
        width: 42px;
        height: 42px;
        color: #2563eb;
        transition: color 0.3s ease, transform 0.35s ease;
    }

    .page-databases .databases-venn-card-policies-performance .databases-venn-card-icon {
        color: #7c3aed;
    }

    .page-databases .databases-venn-card-all .databases-venn-card-icon {
        color: #0891b2;
    }

    .page-databases .databases-venn-card h3 {
        margin: 1px 0 8px;
        color: #0f172a;
        font-size: 15px;
        font-weight: 800;
        transition: color 0.3s ease;
    }

    .page-databases .databases-venn-card p {
        margin: 0;
        color: #475569;
        font-size: 12px;
        line-height: 1.55;
    }

    .page-databases .databases-venn.is-venn-interacting .databases-venn-card:not(.is-related) {
        opacity: 0.3;
        filter: saturate(0.65);
    }

    .page-databases .databases-venn-card.is-related,
    .page-databases .databases-venn-card:hover,
    .page-databases .databases-venn-card:focus-visible {
        z-index: 15;
        opacity: 1;
        transform: translateY(-10px) scale(1.025);
        transition-delay: 0s;
    }

    .page-databases .databases-venn-card-all.is-related,
    .page-databases .databases-venn-card-all:hover,
    .page-databases .databases-venn-card-all:focus-visible {
        transform: translate(-50%, -10px) scale(1.025);
    }

    .page-databases .databases-venn-card.is-related .databases-venn-card-body,
    .page-databases .databases-venn-card:hover .databases-venn-card-body,
    .page-databases .databases-venn-card:focus-visible .databases-venn-card-body {
        border-color: rgba(59, 130, 246, 0.45);
        box-shadow: 0 24px 58px rgba(37, 99, 235, 0.18), 0 0 28px rgba(125, 211, 252, 0.14);
    }

    .page-databases .databases-venn-card.is-related h3,
    .page-databases .databases-venn-card:hover h3,
    .page-databases .databases-venn-card:focus-visible h3 {
        color: #2563eb;
    }

    .page-databases .databases-venn-card.is-related .databases-venn-card-icon,
    .page-databases .databases-venn-card:hover .databases-venn-card-icon,
    .page-databases .databases-venn-card:focus-visible .databases-venn-card-icon {
        color: #3b82f6;
        transform: rotate(8deg) scale(1.08);
    }

    .page-databases .databases-venn-card:focus-visible {
        outline: 3px solid #2563eb;
        outline-offset: 4px;
        border-radius: 16px;
    }

    .page-databases .databases-venn-connectors {
        position: absolute;
        inset: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        overflow: visible;
        pointer-events: none;
    }

    .page-databases .databases-venn-connector-base,
    .page-databases .databases-venn-connector-flow {
        fill: none;
        stroke-linecap: round;
    }

    .page-databases .databases-venn-connector-base {
        stroke: rgba(100, 116, 139, 0.42);
        stroke-width: 1.3;
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
        transition: stroke-dashoffset 0.9s ease, stroke 0.3s ease;
    }

    .page-databases .databases-venn.is-venn-visible .databases-venn-connector-base {
        stroke-dashoffset: 0;
    }

    .page-databases .databases-venn-connector:nth-child(1) .databases-venn-connector-base {
        transition-delay: 0.4s;
    }

    .page-databases .databases-venn-connector:nth-child(2) .databases-venn-connector-base {
        transition-delay: 0.52s;
    }

    .page-databases .databases-venn-connector:nth-child(3) .databases-venn-connector-base {
        transition-delay: 0.64s;
    }

    .page-databases .databases-venn-connector:nth-child(4) .databases-venn-connector-base {
        transition-delay: 0.76s;
    }

    .page-databases .databases-venn-connector-flow {
        stroke: #60a5fa;
        stroke-width: 2.2;
        stroke-dasharray: 0.08 0.14;
        opacity: 0;
    }

    .page-databases .databases-venn-connector circle {
        fill: #ffffff;
        stroke: rgba(59, 130, 246, 0.42);
        stroke-width: 2;
        opacity: 0;
        transform-box: fill-box;
        transform-origin: center;
        transition: opacity 0.4s ease;
    }

    .page-databases .databases-venn.is-venn-visible .databases-venn-connector circle {
        opacity: 1;
    }

    .page-databases .databases-venn-connector.is-related .databases-venn-connector-base {
        stroke: rgba(59, 130, 246, 0.8);
        stroke-width: 2;
    }

    .page-databases .databases-venn-connector.is-related .databases-venn-connector-flow {
        opacity: 1;
        animation: databasesVennLineTravel 1.1s linear infinite;
    }

    .page-databases .databases-venn-connector.is-related circle {
        fill: #93c5fd;
        stroke: #ffffff;
        animation: databasesVennDotPulse 1.2s ease-in-out infinite;
    }

    @keyframes databasesVennAmbient {
        to {
            transform: rotate(360deg) scale(1.08);
        }
    }

    @keyframes databasesVennGlow {
        to {
            transform: translate3d(45px, -28px, 0) scale(1.08);
            opacity: 0.55;
        }
    }

    @keyframes databasesVennOrbDrift {
        from {
            transform: translate3d(-2px, 2px, 0);
        }

        to {
            transform: translate3d(3px, -3px, 0);
        }
    }

    @keyframes databasesVennCardFloat {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-5px);
        }
    }

    @keyframes databasesVennBadgePulse {

        0%,
        100% {
            box-shadow: 0 18px 55px rgba(15, 23, 42, 0.35), 0 0 0 8px rgba(59, 130, 246, 0.04);
        }

        50% {
            box-shadow: 0 20px 62px rgba(15, 23, 42, 0.4), 0 0 0 15px rgba(59, 130, 246, 0.09);
        }
    }

    @keyframes databasesVennLineTravel {
        to {
            stroke-dashoffset: -0.22;
        }
    }

    @keyframes databasesVennDotPulse {
        50% {
            transform: scale(1.55);
            opacity: 0.7;
        }
    }

    @media (max-width: 1200px) {
        .page-databases .databases-work-together-section {
            min-height: auto;
        }

        .page-databases .databases-work-together-inner {
            min-height: auto;
        }

        .page-databases .databases-venn {
            height: 760px;
        }

        .page-databases .databases-venn-orb {
            width: 300px;
            height: 300px;
        }

        .page-databases .databases-venn-orb-schools {
            left: calc(50% - 150px);
            top: 38px;
        }

        .page-databases .databases-venn-orb-policies {
            left: calc(50% - 260px);
            top: 245px;
        }

        .page-databases .databases-venn-orb-performance {
            left: calc(50% - 40px);
            top: 245px;
        }

        .page-databases .databases-venn-orb-content {
            width: 184px;
            margin-top: 38px;
        }

        .page-databases .databases-venn-orb-policies .databases-venn-orb-content,
        .page-databases .databases-venn-orb-performance .databases-venn-orb-content {
            margin-top: 100px;
        }

        .page-databases .databases-venn-center {
            top: 44%;
            width: 140px;
            height: 140px;
        }

        .page-databases .databases-venn-card {
            width: 220px;
        }

        .page-databases .databases-venn-card-schools-policies,
        .page-databases .databases-venn-card-schools-performance {
            top: 175px;
        }

        .page-databases .databases-venn-card-policies-performance {
            top: 470px;
        }

        .page-databases .databases-venn-connectors {
            display: none;
        }
    }

    @media (max-width: 768px) {

        .hero-section-has-image .hero-left h1,
        .hero-section-has-image .hero-sub-text {
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 20, 40, 0.35);
        }

        .page-databases .databases-work-together-inner {
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .page-databases .databases-work-together-content p {
            font-size: 16px;
            line-height: 28px;
        }

        .page-databases .databases-venn {
            height: auto;
            min-height: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 430px 18px 22px;
            border-radius: 24px;
            overflow: hidden;
        }

        .page-databases .databases-venn-orb {
            width: 230px;
            height: 230px;
        }

        .page-databases .databases-venn-orb-schools {
            left: calc(50% - 115px);
            top: 18px;
        }

        .page-databases .databases-venn-orb-policies {
            left: calc(38% - 115px);
            top: 174px;
        }

        .page-databases .databases-venn-orb-performance {
            left: calc(62% - 115px);
            top: 174px;
        }

        .page-databases .databases-venn-orb-content {
            width: 145px;
            margin-top: 28px;
        }

        .page-databases .databases-venn-orb-policies .databases-venn-orb-content,
        .page-databases .databases-venn-orb-performance .databases-venn-orb-content {
            margin-top: 80px;
        }

        .page-databases .databases-venn-orb-icon {
            width: 34px;
            height: 34px;
            margin-bottom: 4px;
        }

        .page-databases .databases-venn-orb h3 {
            margin-bottom: 5px;
            font-size: 16px;
        }

        .page-databases .databases-venn-orb p {
            font-size: 10px;
            line-height: 1.35;
        }

        .page-databases .databases-venn-center {
            top: 230px;
            width: 118px;
            height: 118px;
            padding: 12px;
        }

        .page-databases .databases-venn-center span {
            width: 24px;
            height: 24px;
            margin-bottom: 4px;
        }

        .page-databases .databases-venn-center strong {
            font-size: 10px;
        }

        .page-databases .databases-venn-card,
        .page-databases .databases-venn-card-schools-policies,
        .page-databases .databases-venn-card-schools-performance,
        .page-databases .databases-venn-card-policies-performance,
        .page-databases .databases-venn-card-all {
            position: relative;
            inset: auto;
            width: 100%;
            max-width: 620px;
            margin: 0 auto;
            transform: translateY(24px) scale(0.98);
        }

        .page-databases .databases-venn.is-venn-visible .databases-venn-card,
        .page-databases .databases-venn.is-venn-visible .databases-venn-card-all {
            transform: translateY(0) scale(1);
        }

        .page-databases .databases-venn-card.is-related,
        .page-databases .databases-venn-card:hover,
        .page-databases .databases-venn-card:focus-visible,
        .page-databases .databases-venn-card-all.is-related,
        .page-databases .databases-venn-card-all:hover,
        .page-databases .databases-venn-card-all:focus-visible {
            transform: translateY(-6px) scale(1.01);
        }

        .page-databases .databases-venn-card-body,
        .page-databases .databases-venn-card-all .databases-venn-card-body {
            min-height: 0;
        }

        .page-databases .databases-venn-cursor-glow {
            display: none;
        }
    }

    @media (max-width: 520px) {
        .page-databases .databases-venn {
            padding-top: 355px;
        }

        .page-databases .databases-venn-orb {
            width: 185px;
            height: 185px;
        }

        .page-databases .databases-venn-orb-schools {
            left: calc(50% - 92.5px);
        }

        .page-databases .databases-venn-orb-policies {
            left: calc(36% - 92.5px);
            top: 140px;
        }

        .page-databases .databases-venn-orb-performance {
            left: calc(64% - 92.5px);
            top: 140px;
        }

        .page-databases .databases-venn-orb-content {
            width: 120px;
            margin-top: 24px;
        }

        .page-databases .databases-venn-orb-policies .databases-venn-orb-content,
        .page-databases .databases-venn-orb-performance .databases-venn-orb-content {
            margin-top: 90px;
        }

        .page-databases .databases-venn-center {
            top: 190px;
            width: 102px;
            height: 102px;
        }

        .page-databases .databases-venn-center strong {
            font-size: 8px;
        }

        .page-databases .databases-venn-card-body {
            grid-template-columns: 36px minmax(0, 1fr);
            padding: 17px;
        }

        .page-databases .databases-venn-card-icon {
            width: 36px;
            height: 36px;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .page-databases .databases-work-together-section::before,
        .page-databases .databases-work-together-section::after,
        .page-databases .databases-venn::before,
        .page-databases .databases-venn-orb-surface,
        .page-databases .databases-venn-card-body,
        .page-databases .databases-venn-center,
        .page-databases .databases-venn-connector-flow,
        .page-databases .databases-venn-connector circle {
            animation: none !important;
        }

        .page-databases .databases-venn-orb,
        .page-databases .databases-venn-card,
        .page-databases .databases-venn-center,
        .page-databases .databases-venn-connector-base {
            transition-duration: 0.01ms !important;
            transition-delay: 0s !important;
        }
    }

    /* Section THREE */
    .schools-database-section {
        min-height: 956px;
    }

    .schools-database-inner {
        min-height: 956px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(40px, calc(40px + 70 * ((100vw - 1024px) / (1920 - 1024))), 110px);
        padding: 63px clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px) 47px;
    }

    .schools-database-section-no-cards .schools-database-inner,
    .schools-database-section {
        min-height: 719px;
    }

    .schools-database-section-no-bg .schools-database-inner {
        gap: clamp(40px, calc(40px + 70 * ((100vw - 1024px) / (1920 - 1024))), 87px);
    }

    .schools-database-left {
        max-width: 583px;
        width: 100%;
    }

    .schools-database-section-no-bg .schools-database-left {
        max-width: 100%;
        width: 100%;
    }

    .schools-database-heading-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 37px;
    }

    .schools-database-icon {
        width: 77px;
        height: 63px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 70px;
        background-color: rgba(173, 224, 238, 0.38);
        border-radius: 5px;
    }

    .schools-database-icon svg {
        max-width: 35px;
        max-height: 35px;
    }

    .schools-database-heading-row h1 {
        position: relative;
        font-size: clamp(25px,
                calc(25px + 25 * ((100vw - 320px) / (1920 - 320))),
                50px);
        font-weight: 800;
        color: var(--primary-heading-color);
        margin: 0;
    }

    .schools-database-section-no-bg .schools-database-heading-row h1 {
        font-size: clamp(25px,
                calc(25px + 25 * ((100vw - 320px) / (1920 - 270))),
                50px);
    }

    .schools-database-heading-row h1::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 37px;
        height: 4px;
        background-color: #00A4E4;
        border-radius: 6px;
    }

    .schools-database-para {
        max-width: 495px;
        font-size: 16px;
        font-weight: 300;
        line-height: 34px;
        color: var(--primary-text-color);
        margin: 0 0 37px;
    }

    .schools-database-section-no-cards .schools-database-para {
        max-width: 825px;
    }

    .schools-database-powers-heading {
        font-size: clamp(22px, calc(22px + 8 * ((100vw - 320px) / (1920 - 320))), 30px);
        line-height: 120%;
        font-weight: 800;
        color: #00a4e4;
        margin: 0 0 37px;
    }

    .schools-database-power-list {
        max-width: 583px;
        margin-bottom: 37px;
    }

    .schools-database-power-item {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 27px;
    }

    .schools-database-power-icon {
        width: 45px;
        height: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 45px;
        border: 1px solid #00a4e4;
        border-radius: 6px;
    }

    .schools-database-section-no-bg .schools-database-power-icon {
        background-color: rgba(173, 224, 238, 0.38);
        border: none;
    }

    .schools-database-power-icon img {
        max-width: 22px;
        max-height: 22px;
    }

    .schools-database-power-item p {
        width: 100%;
        font-size: 18px;
        font-weight: 300;
        line-height: 28px;
        color: var(--primary-heading-color);
        margin: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(95, 96, 76, 0.22);
    }

    .schools-database-link {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        font-weight: 800;
        line-height: 120%;
        color: #00a4e4;
        text-decoration: none;
    }

    .schools-database-link::after {
        content: "\2192";
        font-size: 24px;
        line-height: 1;
    }

    .schools-database-decorative-image {
        width: 150px;
        margin-top: 37px;
    }

    .schools-database-decorative-image svg {
        display: block;
        width: 100%;
        height: auto;
    }

    .schools-database-right {
        max-width: 755px;
        width: 100%;
    }

    .schools-database-image {
        max-width: 755px;
        width: 100%;
        /* margin-left: auto; */
        margin-bottom: 32px;
    }

    .schools-database-image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 8px;
        max-width: 755px;
        max-height: 500px;
        object-fit: cover;
    }

    .schools-enrollment-chart {
        position: relative;
        width: 100%;
        margin-bottom: 32px;
        padding: 18px 14px 8px;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 12px 32px rgba(0, 55, 103, 0.1);
    }

    .schools-enrollment-chart canvas {
        display: block;
        width: 100%;
        height: 410px;
        outline: none;
    }

    .schools-enrollment-chart canvas:focus-visible {
        box-shadow: 0 0 0 3px rgba(0, 164, 228, 0.35);
    }

    .schools-enrollment-chart-tooltip {
        position: absolute;
        z-index: 2;
        min-width: 170px;
        padding: 10px 12px;
        border-left: 4px solid #00A4E4;
        border-radius: 4px;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 55, 103, 0.18);
        color: #003767;
        font-size: 13px;
        line-height: 1.45;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, calc(-100% - 12px));
    }

    .schools-enrollment-chart-tooltip.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .schools-enrollment-chart-tooltip strong,
    .schools-enrollment-chart-tooltip span {
        display: block;
    }

    @media (max-width: 500px) {
        .schools-enrollment-chart-tooltip {
            position: static;
            display: none;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            margin-top: 8px;
            transform: none;
        }

        .schools-enrollment-chart-tooltip.is-visible {
            display: block;
        }
    }

    .schools-database-map {
        position: relative;
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(0, 26, 54, 0.18);
        overflow: visible;
        isolation: isolate;
    }

    .schools-database-map svg {
        position: relative;
        z-index: 1;
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    .database-map-point {
        pointer-events: none;
        outline: none;
        opacity: 1;
        transform: scale(1);
        transform-box: fill-box;
        transform-origin: center;
        transition: opacity 0.18s ease, transform 0.2s ease, filter 0.2s ease;
    }

    .database-map-point.is-state-secondary {
        opacity: 0;
        transform: scale(0.35);
    }

    .database-map-point.is-state-secondary.is-state-hover,
    .database-map-point.is-state-secondary.is-state-active {
        opacity: 0;
        transform: scale(0.35);
        filter: none;
    }

    .schools-database-map .database-map-point,
    .schools-database-map svg path {
        pointer-events: none;
    }

    .database-map-point:hover,
    .database-map-point.is-active,
    .database-map-point.is-state-hover,
    .database-map-point.is-state-active,
    .database-map-point:focus,
    .database-map-point:focus-visible {
        transform: scale(1.45);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.42)) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
        outline: none;
    }

    .database-map-point:hover .database-map-point-halo,
    .database-map-point.is-active .database-map-point-halo,
    .database-map-point.is-state-hover .database-map-point-halo,
    .database-map-point.is-state-active .database-map-point-halo,
    .database-map-point:focus .database-map-point-halo,
    .database-map-point:focus-visible .database-map-point-halo {
        opacity: 0.35;
    }

    .database-map-state-hit-area {
        fill: transparent;
        pointer-events: all;
        cursor: pointer;
        outline: none;
    }

    .database-map-info {
        position: absolute;
        top: -150px;
        right: 20px;
        z-index: 5;
        width: min(245px, calc(100% - 40px));
        padding: 16px;
        border-radius: 8px;
        background: rgba(3, 25, 53, 0.9);
        color: #ffffff;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(18px) scale(0.88);
        transform-origin: right bottom;
        transition:
            opacity 0.24s ease,
            transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0.36s;
        will-change: opacity, transform;
    }

    .schools-database-map.is-info-visible .database-map-info {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
    }

    .database-map-info-label {
        display: block;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        font-weight: 700;
    }

    .database-map-info h3 {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 18px;
        line-height: 1.2;
    }

    .database-map-info p {
        margin: 0;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
    }

    .database-map-type-list {
        display: grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .database-map-type-list li {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.3;
    }

    .database-map-type-list span {
        width: 10px;
        height: 10px;
        flex: 0 0 10px;
        border-radius: 50%;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
    }

    @media (max-width: 767px) {
        .database-map-info {
            display: none;
            position: static;
            width: 100%;
            margin-top: 12px;
            transform-origin: top center;
        }

        .schools-database-map.is-info-visible .database-map-info {
            display: block;
        }

        .hero-sect-button {
            justify-content: space-between;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .database-map-info {
            transition-duration: 0.01ms;
        }
    }

    .schools-database-card-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .schools-database-card {
        /* min-height: 262px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 16px;
        background-color: #ffffff;
        border: 1px solid #00a4e4;
        border-radius: 8px;
    }

    .schools-database-card-icon {
        width: 45px;
        height: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        background-color: #e7e9f1;
        border: 1px solid #00a4e4;
        border-radius: 50%;
    }

    .schools-database-card-icon svg {
        max-width: 45px;
        max-height: 45px;
    }

    .schools-database-card h3 {
        font-size: clamp(24px, calc(24px + 6 * ((100vw - 320px) / (1920 - 320))), 30px);
        line-height: 120%;
        font-weight: 800;
        color: var(--primary-heading-color);
        margin: 0 0 18px;
    }

    .schools-database-card p {
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        color: var(--primary-heading-color);
        margin: 0;
    }

    @media (max-width: 1200px) {

        .schools-database-section,
        .schools-database-inner {
            min-height: auto;
        }

        .schools-database-section-no-cards .schools-database-inner,
        .schools-database-section {
            min-height: auto;
        }

        .schools-database-inner {
            gap: 45px;
        }

        .schools-database-image {
            margin-bottom: 60px;
        }
    }

    @media (max-width: 1024px) {
        .schools-database-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .schools-database-left,
        .schools-database-right {
            max-width: 100%;
        }

        .schools-database-para,
        .schools-database-power-list {
            max-width: 100%;
        }

        .schools-database-image {
            margin-left: 0;
        }
    }

    @media (max-width: 768px) {
        .schools-database-inner {
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .schools-database-heading-row {
            align-items: flex-start;
            gap: 16px;
        }

        .schools-database-icon {
            width: 58px;
            height: 58px;
            flex-basis: 58px;
        }

        .schools-database-para {
            font-size: 16px;
            line-height: 28px;
        }

        .schools-database-power-item {
            align-items: flex-start;
            gap: 16px;
        }

        .schools-database-power-item p {
            font-size: 16px;
            line-height: 26px;
        }

        .schools-database-decorative-image {
            width: 120px;
            margin-top: 32px;
        }

        .schools-database-card-list {
            grid-template-columns: 1fr;
        }

        .schools-enrollment-chart {
            padding: 12px 6px 4px;
        }

        .schools-enrollment-chart canvas {
            height: 330px;
        }
    }

    /* DATABASE PAGE */
    /* Section FOUR */
    .page-databases .national-coverage-section {
        min-height: 683px;
    }

    .page-databases .national-coverage-inner {
        min-height: 683px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(45px, calc(45px + 95 * ((100vw - 1024px) / (1920 - 1024))), 140px);
        padding: 70px clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px);
    }

    .page-databases .national-coverage-content {
        max-width: 646px;
        width: 100%;
    }

    .page-databases .national-coverage-content h1 {
        font-size: clamp(28px, calc(28px + 22 * ((100vw - 320px) / (1920 - 320))), 50px);
        line-height: 120%;
        font-weight: 800;
        color: #ffffff;
        margin: 0 0 40px;
    }

    .page-databases .national-coverage-content p {
        max-width: 495px;
        font-size: 16px;
        line-height: 34px;
        font-weight: 300;
        color: #ffffff;
        margin: 0 0 28px;
    }

    .page-databases .national-coverage-link {
        display: inline-flex;
        align-items: center;
        font-size: 16px;
        line-height: 120%;
        font-weight: 800;
        color: #00a4e4;
        text-decoration: none;
    }

    .page-databases .national-coverage-image {
        position: relative;
        max-width: 837px;
        width: 100%;
    }

    .page-databases .national-coverage-image img,
    .page-databases .national-coverage-map {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .page-databases .national-coverage-map path:not(.national-coverage-map-background) {
        cursor: default;
    }

    .page-databases .national-coverage-map path[fill="#FFD000"] {
        transform: scale(1.65);
        transform-box: fill-box;
        transform-origin: center;
        pointer-events: none;
    }

    .page-databases .national-coverage-map path[fill="#FFD000"]:nth-of-type(181) {
        transform: scale(3.4);
    }

    .page-databases .national-coverage-map path[fill="#FDB913"] {
        transform: scale(1.75);
        transform-box: fill-box;
        transform-origin: center;
        pointer-events: none;
    }

    .page-databases .national-coverage-map path:not(.national-coverage-map-background) {
        transform-box: fill-box;
        transform-origin: center;
    }

    /* The source SVG incorrectly colors Illinois blue; the data marks it as None to date. */
    .page-databases .national-coverage-map path:nth-of-type(63) {
        fill: #ffffff;
    }

    .page-databases .national-coverage-map {
        pointer-events: none;
        cursor: default;
    }

    .national-coverage-legend {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 24px;
        color: #ffffff;
        font-size: 13px;
        line-height: 1.4;
        border-radius: 10px;
        padding: 30px;
        background-color: #013768
    }

    .national-coverage-legend-table {
        width: min(100%, 470px);
        border-collapse: collapse;
        color: #ffffff;
        text-align: left;
    }

    .national-coverage-legend-table caption {
        margin-bottom: 8px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 800;
        text-align: left;
    }

    .national-coverage-legend-table th,
    .national-coverage-legend-table td {
        padding: 7px 10px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        font-weight: 400;
    }

    .national-coverage-legend-table thead th {
        font-weight: 800;
    }

    .national-coverage-legend-table thead .national-coverage-legend-description {
        padding: 2px 0 10px;
        border: 0;
        font-size: 16px;
        line-height: 1.35;
    }

    .national-coverage-legend-table th:first-child {
        width: 65%;
    }

    .national-coverage-color {
        display: block;
        width: 100%;
        min-width: 90px;
        height: 22px;
    }

    .national-coverage-color-over-25 {
        background-color: #1155CC;
    }

    .national-coverage-color-10-25 {
        background-color: #6D9EEB;
    }

    .national-coverage-color-1-9 {
        background-color: #C1E4F5;
    }

    .national-coverage-color-none {
        border: 1px solid #D9E2EF;
        background-color: #ffffff;
    }

    .national-coverage-color-not-charter {
        border: 1px solid #c3cfd8;
        background-color: #f7f9fb;
        background-image: repeating-linear-gradient(135deg,
                transparent 0,
                transparent 3px,
                #8fa6b7 3px,
                #8fa6b7 4px);
    }

    @media (max-width: 768px) {
        .policy-practice-section-has-coverage-map .policy-practice-coverage {
            max-width: 100%;
            margin-left: 0;
        }

        .policy-practice-section-has-coverage-map .policy-practice-coverage-heading {
            padding-bottom: 12px;
            font-size: 18px;
        }

        .policy-practice-section-has-coverage-map .national-coverage-legend {
            width: 100%;
            gap: 6px;
            padding: 11px 10px;
        }

        .policy-practice-section-has-coverage-map .national-coverage-legend-table {
            width: 100%;
        }

        .policy-practice-section-has-coverage-map .national-coverage-legend-table thead .national-coverage-legend-description {
            font-size: 13px;
        }

        .policy-practice-section-has-coverage-map .national-coverage-color {
            min-width: 48px;
        }
    }

    .national-coverage-marker-legend {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 28px;
    }

    .national-coverage-legend-item {
        display: inline-flex;
        align-items: center;
        gap: 9px;
    }

    .national-coverage-legend-symbol {
        display: inline-flex;
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
    }

    .national-coverage-legend-star,
    .national-coverage-legend-x {
        color: #FFD000;
    }

    .national-coverage-legend-none {
        border: 1px solid #0D3270;
        background-color: #ffffff;
    }

    @media (max-width: 1200px) {

        .page-databases .national-coverage-section,
        .page-databases .national-coverage-inner {
            min-height: auto;
        }
    }

    @media (max-width: 1024px) {
        .page-databases .national-coverage-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .page-databases .national-coverage-content,
        .page-databases .national-coverage-content h1,
        .page-databases .national-coverage-content p,
        .page-databases .national-coverage-image {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .page-databases .national-coverage-inner {
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .page-databases .national-coverage-content p {
            font-size: 15px;
            line-height: 28px;
        }

        .national-coverage-legend {
            align-items: stretch;
        }

        .national-coverage-marker-legend {
            justify-content: flex-start;
            gap: 12px 20px;
        }
    }

    /* WHO WE ARE PAGE */
    /* Team Section */
    .page-who-we-are .who-we-are-team-section {
        overflow: hidden;
    }

    .page-who-we-are .who-we-are-team-inner {
        padding: 178px clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px) 0;
    }

    .page-who-we-are .who-team-member {
        display: grid;
        grid-template-columns: minmax(0, 650px) minmax(360px, 855px);
        align-items: center;
        gap: clamp(55px, calc(55px + 95 * ((100vw - 1024px) / (1920 - 1024))), 150px);
        margin-bottom: clamp(90px, calc(90px + 50 * ((100vw - 320px) / (1920 - 320))), 140px);
    }

    .page-who-we-are .who-team-member:nth-child(even) {
        grid-template-columns: minmax(360px, 855px) minmax(0, 650px);
    }

    .page-who-we-are .who-team-member:nth-child(even) .who-team-content {
        order: 2;
    }

    .page-who-we-are .who-team-member:nth-child(even) .who-team-media {
        order: 1;
    }

    .page-who-we-are .who-team-content {
        max-width: 702px;
        width: 100%;
        min-width: 0;
    }

    .page-who-we-are .who-team-member:nth-child(even) .who-team-content {
        max-width: 590px;
    }

    .page-who-we-are .who-team-label {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 120%;
        font-weight: 700;
        color: var(--primary-heading-color);
        text-transform: uppercase;
    }

    .page-who-we-are .who-team-label::before {
        content: "";
        display: block;
        width: 113px;
        height: 6px;
        background-color: #0073AE;
    }

    .page-who-we-are .who-team-content h1 {
        font-size: clamp(30px, calc(30px + 30 * ((100vw - 320px) / (1920 - 320))), 60px);
        line-height: 120%;
        font-weight: 800;
        color: var(--primary-heading-color);
        margin: 0 0 25px;
    }

    .page-who-we-are .who-team-content h1 span {
        color: #00a4e4;
    }

    .page-who-we-are .who-team-content h3 {
        font-size: clamp(18px, calc(18px + 12 * ((100vw - 320px) / (1920 - 320))), 30px);
        line-height: 120%;
        font-weight: 800;
        color: var(--primary-heading-color);
        margin: 0 0 25px;
    }

    .page-who-we-are .who-team-bio {
        margin-bottom: 25px;
    }

    .page-who-we-are .who-team-bio p {
        font-size: 18px;
        line-height: 33px;
        font-weight: 300;
        color: #000000;
        margin: 0;
    }

    .page-who-we-are .who-team-button {
        /*     max-width: 402px; */
        min-height: 58px;
        display: inline-flex;
        align-items: center;
        gap: 28px;
        padding: 17px 38px;
        background-color: var(--primary-heading-color);
        border-radius: 50px;
        color: #ffffff;
        text-decoration: none;
    }

    .page-who-we-are .who-team-button-icon {
        width: 43px;
        height: 43px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 43px;
        border-radius: 50%;
        background-color: #00a4e4;
    }

    .page-who-we-are .who-team-button-icon svg {
        display: block;
        width: 19px;
        height: auto;
    }

    .page-who-we-are .who-team-button-text {
        min-width: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .page-who-we-are .who-team-button-text strong {
        font-size: 18px;
        line-height: 120%;
        font-weight: 300;
    }

    .page-who-we-are .who-team-button-text small {
        /*     overflow: hidden; */
        font-size: 18px;
        line-height: 120%;
        font-weight: 300;
        /*     text-overflow: ellipsis; */
        white-space: nowrap;
    }

    .page-who-we-are .who-team-button-arrow {
        width: 19px;
        height: 19px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 19px;
    }

    .page-who-we-are .who-team-button-arrow svg {
        display: block;
    }

    .page-who-we-are .who-team-media {
        width: 100%;
    }

    .page-who-we-are .who-team-image-frame {
        position: relative;
        max-width: 720px;
        width: 100%;
        margin-left: auto;
        padding: 0 92px 92px 0;
    }

    .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame {
        margin-right: auto;
        margin-left: 0;
        padding: 0 92px 92px 0;
    }

    .page-who-we-are .who-team-image-frame::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 55%;
        height: 42%;
        background-color: var(--primary-heading-color);
        z-index: 0;
    }

    .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame::before {
        right: 0;
        left: auto;
    }

    .page-who-we-are .who-team-image-frame::after {
        content: "";
        position: absolute;
        right: 55px;
        bottom: 37px;
        width: 154px;
        height: 110px;
        background-image: radial-gradient(circle at center, #ffffff 2px, transparent 3.5px);
        background-size: 22px 22px;
        background-position: 8px 16px;
        z-index: 1;
    }

    .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame::after {
        right: 55px;
        left: auto;
    }

    .page-who-we-are .who-team-image-frame img {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    @media (max-width: 1300px) {

        .page-who-we-are .who-team-member,
        .page-who-we-are .who-team-member:nth-child(even) {
            grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
            gap: 45px;
        }
    }

    @media (max-width: 1200px) {


        .page-who-we-are .who-team-image-frame {
            padding: 0 64px 64px 0;
        }

        .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame {
            padding: 0 64px 64px 0;
        }

        .page-who-we-are .who-team-image-frame::after {
            right: 27px;
            bottom: 19px;
            width: 126px;
            height: 90px;
            background-size: 18px 18px;
            background-position: 9px 9px;
        }

        .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame::after {
            right: 27px;
            left: auto;
        }

        .research-cards-main {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 1024px) {

        .page-who-we-are .who-team-member,
        .page-who-we-are .who-team-member:nth-child(even) {
            grid-template-columns: 1fr;
        }

        .page-who-we-are .who-team-member:nth-child(even) .who-team-content,
        .page-who-we-are .who-team-member:nth-child(even) .who-team-media {
            order: initial;
        }

        .page-who-we-are .who-team-content,
        .page-who-we-are .who-team-member:nth-child(even) .who-team-content,
        .page-who-we-are .who-team-bio {
            max-width: 100%;
        }

        .page-who-we-are .who-team-image-frame,
        .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame {
            max-width: 620px;
            margin: 0;
        }
    }

    @media (max-width: 600px) {
        .page-who-we-are .who-we-are-team-inner {
            padding-top: 100px;
        }

        .page-who-we-are .who-team-member {
            margin-bottom: 70px;
        }

        .page-who-we-are .who-team-label::before {
            width: 52px;
        }

        .page-who-we-are .who-team-content h1 {
            margin-bottom: 22px;
        }

        .page-who-we-are .who-team-bio p {
            font-size: 15px;
            line-height: 28px;
        }

        .page-who-we-are .who-team-button {
            width: 100%;
            max-width: 100%;
            gap: 12px;
            padding: 10px;
        }

        .page-who-we-are .who-team-button-text small {
            white-space: normal;
            overflow-wrap: anywhere;
            font-size: 12px;
        }

        .page-who-we-are .who-team-image-frame {
            padding: 0 42px 42px 0;
        }

        .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame {
            padding: 0 42px 42px 0;
        }

        .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame::before {
            right: 0;
            left: auto;
        }

        .page-who-we-are .who-team-image-frame::after {
            right: 10px;
            bottom: 10px;
            width: 91px;
            height: 65px;
            background-image: radial-gradient(circle at center, #ffffff 1.75px, transparent 2.75px);
            background-size: 13px 13px;
            background-position: 6.5px 6.5px;
        }

        .page-who-we-are .who-team-member:nth-child(even) .who-team-image-frame::after {
            right: 10px;
            left: auto;
        }

        .hero-right img {
            width: 100%;
        }
    }

    /* CONTACT US PAGE */
    .page-contact-us .site-header .site-header-actions .header-button {
        display: none;
    }

    /* Form Section */
    .page-contact-us .contact-us-form-section {
        padding: 221px clamp(20px, calc(20px + 100 * ((100vw - 320px) / (1920 - 320))), 120px) 50px;
    }

    .page-contact-us .contact-us-form-card {
        max-width: 1402px;
        min-height: 669px;
        display: grid;
        grid-template-columns: minmax(0, 590px) minmax(0, 680px);
        gap: clamp(50px, calc(50px + 20 * ((100vw - 1024px) / (1920 - 1024))), 70px);
        align-items: flex-start;
        margin: 0 auto;
        padding: 47px 20px 48px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    }

    .page-contact-us .contact-us-form-content h1 {
        font-size: clamp(30px, calc(30px + 20 * ((100vw - 320px) / (1920 - 320))), 40px);
        line-height: 120%;
        font-weight: 800;
        color: var(--primary-heading-color);
        margin: 0 0 20px;
    }

    .page-contact-us .contact-us-form-content p {
        max-width: 608px;
        font-size: 16px;
        line-height: 30px;
        font-weight: 300;
        color: var(--primary-text-color);
        margin: 0 0 27px;
    }

    .page-contact-us .contact-us-form-image {
        width: 100%;
    }

    .page-contact-us .contact-us-form-image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .page-contact-us .contact-us-form-wrapper {
        position: relative;
    }

    .page-contact-us .contact-us-form-wrapper form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
        row-gap: 18px;
    }

    .page-contact-us .contact-us-form-field {
        min-width: 0;
    }

    .page-contact-us .contact-us-form-wrapper p {
        margin: 0;
    }

    .page-contact-us .contact-us-form-wrapper label {
        display: block;
        font-size: 16px;
        line-height: 120%;
        font-weight: 300;
        color: #000000;
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-form-control-wrap {
        display: block;
        margin-top: 12px;
    }

    .page-contact-us .contact-us-form-wrapper input[type="text"],
    .page-contact-us .contact-us-form-wrapper input[type="email"],
    .page-contact-us .contact-us-form-wrapper input[type="tel"],
    .page-contact-us .contact-us-form-wrapper input[type="url"],
    .page-contact-us .contact-us-form-wrapper textarea,
    .page-contact-us .contact-us-form-wrapper select {
        width: 100%;
        min-height: 39px;
        padding: 9px 16px;
        border: 1px solid #5f604c;
        border-radius: 4px;
        background-color: #ffffff;
        color: #000000;
        font: inherit;
    }

    .page-contact-us .contact-us-form-wrapper input::placeholder,
    .page-contact-us .contact-us-form-wrapper textarea::placeholder {
        color: rgba(95, 96, 76, 0.55);
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-checkbox,
    .page-contact-us .contact-us-form-wrapper .wpcf7-radio {
        display: block;
        min-height: 271px;
        padding: 14px 16px;
        border: 1px solid #5f604c;
        border-radius: 4px;
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-list-item {
        display: block;
        margin: 0 0 8px;
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-list-item label {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 15px;
        line-height: 20px;
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-list-item input {
        width: 12px;
        height: 12px;
        margin-top: 4px;
        flex: 0 0 12px;
    }

    .page-contact-us .contact-us-form-submit {
        position: relative;
        display: inline-flex;
        align-items: center;
        width: 139px;
        margin-top: 10px;
    }

    .page-contact-us .contact-us-form-submit::after {
        content: "";
        position: absolute;
        right: 23px;
        top: 50%;
        width: 15px;
        height: 15px;
        z-index: 2;
        pointer-events: none;
        transform: translateY(-50%);
        background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 10.25H19.75M10.2509 19.75L19.75 10.25L10.2509 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .page-contact-us .contact-us-form-wrapper input[type="submit"],
    .page-contact-us .contact-us-form-wrapper .wpcf7-submit {
        width: 100%;
        min-width: 139px;
        min-height: 40px;
        display: inline-flex;
        justify-content: center;
        padding: 10px 50px 10px 24px;
        border: 0;
        border-radius: 0;
        background-color: #0073ae;
        color: #ffffff;
        font-size: 16px;
        font-weight: 800;
        line-height: 120%;
        cursor: pointer;
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-spinner {
        margin: 0 0 0 10px;
    }

    .page-contact-us .contact-us-form-wrapper .wpcf7-response-output {
        grid-column: 1 / -1;
        margin: 0;
        padding: 14px 16px;
        border-radius: 4px;
        font-weight: 700;
        line-height: 140%;
    }

    .page-contact-us .contact-us-form-wrapper form.sent .wpcf7-response-output {
        border-color: #5e9f35;
        background: #edf7e7;
        color: #31591b;
    }

    .page-contact-us .contact-us-form-wrapper form.invalid .wpcf7-response-output,
    .page-contact-us .contact-us-form-wrapper form.failed .wpcf7-response-output,
    .page-contact-us .contact-us-form-wrapper form.spam .wpcf7-response-output {
        border-color: #b42318;
        background: #fff0ef;
        color: #8f1d14;
    }

    .page-contact-us .contact-us-form-decorative-image {
        width: 122px;
        margin: 30px 0 0 0px;
    }

    .page-contact-us .contact-us-form-decorative-image svg {
        display: block;
        width: 100%;
        height: auto;
    }

    @media (max-width: 1024px) {
        .page-contact-us .contact-us-form-card {
            grid-template-columns: 1fr;
        }

        .page-contact-us .contact-us-form-content p {
            max-width: 100%;
        }
    }

    @media (max-width: 700px) {
        .page-contact-us .contact-us-form-section {
            padding-top: 100px;
        }

        .page-contact-us .contact-us-form-card {
            padding: 28px 18px;
        }

        .page-contact-us .contact-us-form-wrapper form {
            grid-template-columns: 1fr;
        }

        .page-contact-us .contact-us-form-wrapper .wpcf7-checkbox,
        .page-contact-us .contact-us-form-wrapper .wpcf7-radio {
            min-height: auto;
        }

        .page-contact-us .contact-us-form-decorative-image {
            width: 120px;
            margin-left: 0;
        }
    }

    /* Reusable service detail section */
    .service-detail-section {
        width: 100%;
    }

    .service-detail-inner {
        min-height: 785px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
        grid-template-areas: "content media";
        align-items: center;
        gap: clamp(45px, 7vw, 130px);
        padding: clamp(70px, 7vw, 125px) clamp(20px, 6.25vw, 120px);
    }

    .service-detail-section-odd .service-detail-inner {
        grid-template-areas: "media content";
    }

    .service-detail-content {
        grid-area: content;
    }

    .service-detail-media {
        grid-area: media;
    }

    .service-detail-section-odd .service-detail-media {
        margin-right: auto;
        margin-left: 0;
    }

    .service-detail-content {
        max-width: 760px;
    }

    .service-detail-eyebrow {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 70px;
    }

    .service-detail-icon svg {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .service-detail-subheading {
        color: var(--primary-text-color);
        font-size: 15px;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .service-detail-heading-wrap {
        position: relative;
        display: inline-block;
        margin-bottom: 26px;
    }

    .service-detail-heading {
        position: relative;
        z-index: 1;
        margin: 0;
        color: var(--primary-heading-color);
        font-size: clamp(25px, calc(25px + 13 * ((100vw - 320px) / (1920 - 320))), 38px);;
        font-weight: 800;
        line-height: 1.08;
        text-transform: none;
    }

    .service-detail-heading-underline {
        position: absolute;
        z-index: 0;
        left: 0;
        bottom: -9px;
        display: block;
        width: min(210px, 48%);
        height: 8px;
        object-fit: fill;
    }

    .service-detail-copy {
        max-width: 730px;
        color: var(--primary-text-color);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.75;
    }

    .service-detail-copy p {
        margin: 0 0 18px;
        line-height: inherit;
    }

    .service-detail-copy p:last-child {
        margin-bottom: 0;
    }

    .service-detail-copy strong {
        font-weight: 600;
        line-height: 120%;
    }

    .service-detail-list {
        max-width: 730px;
        margin: 28px 0 0;
        padding: 26px 0 0;
        border-top: 1px solid rgba(95, 96, 76, 0.2);
        list-style: none;
    }

    .service-detail-list-item {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
        color: var(--primary-heading-color);
        font-size: 16px;
        font-weight: 600;
        line-height: 120%;
    }

    .service-detail-list-item:last-child {
        margin-bottom: 0;
    }

    .service-detail-list-icon {
        width: 18px;
        height: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 18px;
    }

    .service-detail-list-icon svg {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .service-detail-media {
        width: 100%;
        max-width: 860px;
        margin-left: auto;
    }

    .service-detail-media img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 560px;
        object-fit: contain;
    }

    .wpcf7-not-valid-tip {
        margin-top: 10px;
    }

    @media(min-width:1201px) and (max-width: 1660px) {
        .page-who-we-are .who-team-member:nth-child(even) {
            gap: 30px;
        }
    }

    @media (max-width: 1100px) {
        .service-detail-inner {
            grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
            gap: 45px;
        }
    }

    @media(min-width: 1025px) and (max-width: 1260px) {
        .schools-database-image img {
            height: 310px;
            object-fit: cover;
        }
    }

    @media(max-width: 1024px) {
        .hero-section-has-image::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 37, 73, 0.2);
            pointer-events: none;
        }

        .hero-section-has-image>* {
            position: relative;
            z-index: 2;
        }
    }

    @media (max-width: 900px) {
        .service-detail-inner {
            min-height: 0;
            grid-template-columns: 1fr;
            grid-template-areas:
                "content"
                "media";
            gap: 50px;
        }

        .service-detail-section-odd .service-detail-inner {
            grid-template-areas:
                "content"
                "media";
        }

        .service-detail-content,
        .service-detail-media {
            max-width: 760px;
            margin-right: auto;
            margin-left: auto;
        }

        .service-detail-section-odd .service-detail-media {
            margin-right: auto;
            margin-left: auto;
        }
    }

    @media(max-width: 767px) {

        .hero-section-inner,
        .hero-btn {
            flex-direction: column;
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .hero-section-inner {
            padding-top: 100px;
        }

        .research-cards-main {
            grid-template-columns: repeat(1, 1fr);
        }

        .service-detail-inner {
            padding-top: 55px;
            padding-bottom: 55px;
        }

        .service-detail-eyebrow {
            gap: 12px;
            margin-bottom: 16px;
        }

        .service-detail-icon {
            width: 54px;
            height: 54px;
            flex-basis: 54px;
        }

        .service-detail-subheading {
            font-size: 12px;
        }

        .service-detail-copy {
            font-size: 15px;
            line-height: 1.65;
        }

        .page-databases .databases-venn-orb p {
            display: none;
        }

        .page-home .hero-section {
            background-position: 30%;
        }

        .data-and-research-component-left {
            border-right: none;
        }
        .alternative-school-list-item{
            align-items: baseline;
        }
    }