/* GENERATED by extractors/extract_page_assets.py — do not hand-edit.
   Lifted from an inline <style> in the source page; relative url()
   targets are rebased for this file's depth. */
:root {
    --navy1: #061c4d;
    /* --dark-blue: #08275f; */
    --dark-blue: #00285e;
    /* --blue: #1769c2; */
    --gold: #e9a52b;
    --green: #4e9b62;
    --orange: #ee8c20;
    --purple: #7667d9;
    --text: #0a1d42;
    --muted: #5d687b;
    --light-blue: #edf7fc;
    --cream: #fffaf0;
    --white: #ffffff;
}

.jnis-page {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.container {
    width: min(1400px, 92%);
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.1;
    color: var(--navy1);
    text-align: center;
    font-weight: 600;
}

.section-title span {
    color: var(--gold);
}

/* .section-line {
            width: 65px;
            height: 3px;
            background: var(--gold);
            margin: 18px auto 45px;
            position: relative;
        }

        .section-line::before,
        .section-line::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 45px;
            height: 1px;
            background: #d9c49b;
        }

        .section-line::before {
            right: calc(100% + 12px);
        }

        .section-line::after {
            left: calc(100% + 12px);
        } */

/* dotted decoration */

.dots {
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(#7bb9d5 1.5px,
            transparent 1.5px);
    background-size: 9px 9px;
    opacity: .5;
    pointer-events: none;
}

.dots.gold {
    background-image: radial-gradient(var(--gold) 1.5px,
            transparent 1.5px);
}

/* =========================================================
           HERO
        ========================================================= */

.career-hero {
    min-height: 700px;
    position: relative;
    padding: 10px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%,
            rgba(210, 239, 249, .7),
            transparent 35%),
        #fff;
}

.career-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(23, 105, 194, .15);
    border-radius: 50%;
    right: -260px;
    top: -150px;
}

.career-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(233, 165, 43, .18);
    border-radius: 50%;
    left: -280px;
    bottom: -250px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 58% 63%;
    align-items: center;
    min-height: 650px;
    /* padding-left: 15%; */
}

.hero-content {
    padding-right: 50px;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(58px, 6vw, 100px);
    line-height: .92;
    letter-spacing: -3px;
    color: var(--navy1);
    margin-bottom: 35px;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-description {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.65;
    color: #283b5c;
    margin-bottom: 18px;
}

.hero-small {
    max-width: 550px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 24px;
    background: var(--navy1);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.btn-primary span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 23px;
    border: 1px solid var(--navy1);
    border-radius: 40px;
    color: var(--navy1);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-outline:hover {
    background: var(--navy1);
    color: #fff;
}

/* hero image */

.hero-visual {
    position: relative;
    min-height: 600px;
}

.hero-image-wrap {
    position: absolute;
    width: 850px;
    height: 920px;
    right: -25px;
    top: -30px;
    border-radius: 50% 50% 18% 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 25px 80px rgba(7, 38, 90, .16);
    z-index: 2;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 60%,
            rgba(5, 31, 82, .35));
}

.hero-badge {
    position: absolute;
    z-index: 5;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    left: -4%;
    bottom: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 5px solid white;
}

.hero-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 26px;
}

.hero-badge small {
    font-size: 18px;
    line-height: 1.3;
    opacity: .8;
}

/* flowing line */

.hero-flow {
    position: absolute;
    width: 600px;
    height: 250px;
    bottom: -100px;
    left: -540px;
    opacity: .4;
    z-index: -1;

}

.hero-flow path {
    fill: none;
    stroke: var(--blue);
    stroke-width: 1;
}

/* =========================================================
           CORE PILLARS
        ========================================================= */

.pillars {
    padding: 100px 0 120px;
    position: relative;
}

.pillars::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            #dce7ed,
            transparent);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: auto;
}

.pillar {
    padding: 20px 55px 30px;
    position: relative;
    text-align: center;
}

.pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(transparent,
            #d8e0e6,
            transparent);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 40px;
    background: #edf6ff;
    color: var(--blue);
    position: relative;
}

.pillar:nth-child(2) .pillar-icon {
    background: #eef9f0;
    color: var(--green);
}

.pillar:nth-child(3) .pillar-icon {
    background: #fff5e7;
    color: var(--orange);
}

.pillar h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    margin-bottom: 15px;
    color: var(--navy1);
}

.pillar p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    max-width: 270px;
    margin: auto;
}

.pillar-link {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-bottom: 2px solid var(--blue);
    margin: 20px auto 0;
    color: var(--blue);
}

/* =========================================================
           EDUCATOR + TESTIMONIAL
        ========================================================= */

.educator-section {
    /* background: var(--el-dark); */
    background: radial-gradient(circle at 80% 20%, #162a45 0%, #040f21 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.educator-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgb(23 105 194 / 39%);
    right: -300px;
    top: -200px;
}

.educator-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 60px;
}

.educator-image {
    height: 600px;
    position: relative;
}

.educator-image-main {
    position: absolute;
    width: 480px;
    height: 560px;
    left: 30px;
    top: 0;
    border-radius: 250px 250px 20px 20px;
    overflow: hidden;
}

.educator-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.educator-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 29, 76, .55),
            transparent 50%);
}

.image-ring {
    position: absolute;
    width: 510px;
    height: 590px;
    border: 1px solid var(--blue);
    border-radius: 260px 260px 30px 30px;
    left: 5px;
    top: -15px;
    transform: rotate(-3deg);
}

.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 36px;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    padding: 7px 10px 10px 18px;
}

.educator-content {
    padding-right: 30px;
}

.eyebrow {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.educator-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--navy1);
}

.quote {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.5;
    color: var(--navy1);
    position: relative;
    padding-left: 50px;
    margin: 35px 0;
}

.quote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -25px;
    font-size: 80px;
    color: var(--gold);
}

.person {
    display: flex;
    align-items: center;
    gap: 15px;
}

.person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.person strong {
    display: block;
    color: var(--bg-3);
    margin-bottom: 3px;
}

.person span {
    font-size: 13px;
    color: var(--muted);
}

.quote-controls {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.quote-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #b8c8d9;
    background: white;
    color: var(--navy1);
    cursor: pointer;
}

.featured-quote {
    margin-top: 50px;
    padding: 35px 40px;
    background: var(--navy1);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-quote::before {
    content: "“";
    position: absolute;
    font-family: "Playfair Display";
    font-size: 180px;
    color: rgba(255, 255, 255, .05);
    right: 10px;
    top: -65px;
}

.featured-quote p {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.5;
    max-width: 500px;
    margin-bottom: 25px;
}

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

.featured-person img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.educator-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 60px;
}

.educator-image {
    height: 600px;
    position: relative;
}

.educator-image-main {
    position: absolute;
    width: 480px;
    height: 560px;
    left: 30px;
    top: 0;
    border-radius: 250px 250px 20px 20px;
    overflow: hidden;
}

.educator-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.educator-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 29, 76, .55),
            transparent 50%);
}

.image-ring {
    position: absolute;
    width: 510px;
    height: 590px;
    border: 1px solid var(--blue);
    border-radius: 260px 260px 30px 30px;
    left: 5px;
    top: -15px;
    transform: rotate(-3deg);
}

.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 36px;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    padding: 7px 10px 10px 18px;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.educator-content {
    position: relative;
    min-width: 0;
    padding-right: 30px;
}


/* =========================================================
   HEADING + ARROWS
========================================================= */

.testimonial-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.educator-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.1;
    margin: 0;
}


/* =========================================================
   ARROWS
========================================================= */

.quote-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-bottom: 3px;
}

.quote-controls button {
    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 1px solid #b8c8d9;

    background: #fff;
    color: var(--navy1);

    cursor: pointer;

    display: grid;
    place-items: center;

    font-size: 18px;

    transition: .3s ease;
}

.quote-controls button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.quote-controls button.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}


/* =========================================================
   SWIPER
========================================================= */

.educator-swiper {
    width: 100%;

    /*
       IMPORTANT:
       Don't give this a huge fixed height.
    */
    height: auto;

    overflow: hidden;
}

.educator-swiper .swiper-wrapper {
    align-items: flex-start;
}

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


/* =========================================================
   TESTIMONIAL SLIDE
========================================================= */

.testimonial-slide {
    width: 100%;
}


/* =========================================================
   MAIN QUOTE
========================================================= */

.quote {
    position: relative;

    font-family: "Playfair Display", serif;

    font-size: 20px;
    line-height: 1.5;

    padding-left: 48px;

    margin: 5px 0 22px;

    max-width: 650px;
}

.quote::before {
    content: "“";

    position: absolute;

    left: 0;
    top: -22px;

    font-family: "Playfair Display", serif;

    font-size: 72px;
    line-height: 1;

    color: var(--gold);
}


/* =========================================================
   PERSON
========================================================= */

.person {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-left: 48px;
}

.person img {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    object-fit: cover;
}

.person strong {
    display: block;

    color: #fff;

    font-size: 15px;

    margin-bottom: 3px;
}

.person span {
    display: block;

    color: rgba(255, 255, 255, .45);

    font-size: 13px;
}


/* =========================================================
   BLUE TESTIMONIAL PANEL
========================================================= */

.featured-quote {
    position: relative;
    margin-top: 30px;
    padding: 28px 35px;
    min-height: 150px;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #0b2f76 0%,
            #09245d 60%,
            #071d4b 100%);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .15);
}


/* Top blue line */

.featured-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 3px;
    background: #38a9e0;
}


/* Decorative quote */

.featured-quote-mark {
    position: absolute;

    right: 15px;
    top: -30px;

    font-family: "Playfair Display", serif;

    font-size: 145px;
    line-height: 1;

    color: rgba(70, 150, 255, .12);

    pointer-events: none;
}


/* Decorative circle */

.featured-quote::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -90px;

    border: 1px solid rgba(70, 150, 255, .15);

    border-radius: 50%;
}


/* Text */

.featured-quote p {
    position: relative;
    z-index: 2;

    font-family: "Playfair Display", serif;

    font-size: 17px;
    line-height: 1.5;

    max-width: 550px;

    color: rgba(255, 255, 255, .95);

    margin: 0 0 20px;
}


/* =========================================================
   FEATURED PERSON
========================================================= */

.featured-person {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-person img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-person strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px;
}

.featured-person small {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

/* =========================================================   MOBILE========================================================= */
@media (max-width: 991px) {
    .educator-content {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-heading-row {
        display: block;
    }

    .quote-controls {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .educator-content h2 {
        font-size: 36px;
    }

    .quote {
        font-size: 18px;
        padding-left: 40px;
    }

    .person {
        margin-left: 40px;
    }

    .featured-quote {
        padding: 25px 22px;
    }

    .featured-quote p {
        font-size: 16px;
    }

}

/* =========================================================
           EDUCATOR QUALITIES
        ========================================================= */

.qualities {
    padding: 110px 0 70px;
    position: relative;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1250px;
    margin: auto;
}

.quality {
    padding: 25px 35px;
    position: relative;
}

.quality:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    border-right: 1px dashed #d5dde6;
}

.quality-number {
    font-family: "Playfair Display", serif;
    font-size: 70px;
    color: rgba(6, 28, 77, .035);
    position: absolute;
    right: 20px;
    top: 0;
}

.quality-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: #f1f5ff;
    color: var(--blue);
    margin-bottom: 25px;
}

.quality:nth-child(2) .quality-icon {
    background: #effaf0;
    color: var(--green);
}

.quality:nth-child(3) .quality-icon {
    background: #fff4e5;
    color: var(--orange);
}

.quality:nth-child(4) .quality-icon {
    background: #f3efff;
    color: var(--purple);
}

.quality h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--navy1);
}

.quality p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
           CURRENT OPENINGS
        ========================================================= */

.openings-section {
    background: var(--bg-color-cream);
    padding: 110px 0 130px;
    position: relative;
}

.openings-layout {
    display: grid;
    grid-template-columns: 32% 62%;
    gap: 80px;
    align-items: start;
}

.openings-intro {
    position: sticky;
    top: 40px;
}

.openings-intro .section-title {
    text-align: left;
    font-size: clamp(38px, 4vw, 62px);
}

.openings-intro .section-line {
    margin-left: 0;
}

.openings-intro p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
    max-width: 350px;
}

.opening-list {
    border-top: 1px solid #ccd7e2;
}

.opening-item {
    display: grid;
    grid-template-columns: 1fr 150px;
    align-items: center;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid #0000001a;
    transition: .35s ease;
}

.opening-item
/* .opening-item:hover {
            padding-left: 20px;
            padding-right: 20px;
            background: white;
        } */

.opening-item:hover .opening-link span {
    background: var(--blue) !important;
}

.opening-role {
    display: flex;
    align-items: center;
    gap: 20px;
}

.opening-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--dark);
    color: var(--blue);
    font-size: 21px;
    padding: 14px;
}

.opening-icon img {
    filter: invert(1);
}

/* .opening-item:nth-child(2) .opening-icon {
            background: #edf9f0;
            color: var(--green);
        }

        .opening-item:nth-child(3) .opening-icon {
            background: #fff3e4;
            color: var(--orange);
        }

        .opening-item:nth-child(4) .opening-icon {
            background: #f2efff;
            color: var(--purple);
        } */

.opening-role h3 {
    font-family: 'Montserrat' !important;
    font-size: 26px !important;
    color: var(--dark);
    margin-bottom: 5px;
}

.opening-role span {
    font-size: 16px;
    color: var(--muted);
}

.opening-department {
    color: var(--muted);
    font-size: 14px;
}

.opening-link {
    justify-self: end;
    color: var(--navy1);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opening-link span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy1);
    color: white;
    transition: .3s ease;
}

.opening-link:hover span {
    background: var(--gold);
    color: var(--navy1);
    transform: translateX(5px);
}

.all-openings {
    display: inline-flex;
    margin-top: 35px;
    color: var(--navy1);
    text-decoration: none;
    font-weight: 600;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--blue);
    padding-bottom: 7px;
}

/* =========================================================
           UNSOLICITED
        ========================================================= */

.unsolicited {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color-cream);
}

.unsolicited-inner {
    min-height: 420px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    position: relative;
}

.unsolicited-copy {
    position: relative;
    z-index: 3;
}

.unsolicited-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    color: var(--navy1);
    max-width: 600px;
    margin-bottom: 25px;
}

.unsolicited-copy h2 span {
    color: var(--gold);
}

.unsolicited-copy p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
}

.paper-plane {
    position: absolute;
    right: 5%;
    top: 20px;
    width: 600px;
    height: 400px;
}

.paper-plane svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.plane-shape {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
}

.plane-line {
    fill: none;
    stroke: #a5c9e4;
    stroke-width: 1.5;
    stroke-dasharray: 7 8;
}

/* =========================================================
           COMMUNITY STRIP
        ========================================================= */

.community {
    /* padding: 0; */
    /* margin-bottom: -100px; */
    margin-top: -100px;
    background: var(--bg-color-cream);
}

.community-inner {
    min-height: 200px;
    background: linear-gradient(135deg, rgba(8, 38, 82, 0.94) 0%, rgb(15 58 113) 48%, rgb(56 166 221) 100%);
    ;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 70px;
    padding-left: 30px;
}

.community-inner::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 50%;
    right: -150px;
    top: -250px;
}

.community-left {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.community-icon {
    width: 130px;
    height: 130px;
    /* border: 1px solid rgba(255, 255, 255, .4); */
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.community-left small {
    display: block;
    /* opacity: .7; */
    margin-bottom: 3px;
    font-size: 30px;
    /* text-transform: capitalize; */
}

.community-left strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
}

.community-left span {
    font-size: 14px;
}

.community-tagline {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1.3;
    max-width: 300px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.openings-section .ribbon-flow {
    position: absolute;
    height: 90%;
    width: 100%;
    opacity: 0.1;
    /* z-index: -8; */
}


.community-left .section-title .title-left {
    font-size: 2rem !important;
}

.community-left .section-title .title-right {
    font-size: 2.5rem !important;
}


/* =========================================================
   TESTIMONIAL RIGHT SIDE
========================================================= */

.educator-content {
    position: relative;
    min-width: 0;
    padding-right: 30px;
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.educator-content h2 {
    margin: 0;
}


/* =========================================================
   NAVIGATION
========================================================= */

.testimonial-navigation {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.testimonial-navigation button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .96);
    color: #08234a;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 17px;
    transition: .3s ease;
}

.testimonial-navigation button:hover {
    background: #39a9df;
    border-color: #39a9df;
    color: #fff;
    transform: translateY(-2px);
}

.testimonial-navigation button.swiper-button-disabled {
    opacity: .3;
    pointer-events: none;
}

/* =========================================================   swiper========================================================= */
.educator-swiper {
    width: 100%;
    overflow: hidden;
}

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

/* =========================================================   slide========================================================= */
.testimonial-slide {
    position: relative;
    padding-left: 2px;
}

/* =========================================================   LARGE QUOTE mark========================================================= */
.quote-mark {
    position: absolute;
    left: -8px;
    top: -35px;
    font-family: "Playfair Display", serif;
    font-size: 110px;
    line-height: 1;
    color: rgba(48, 159, 224, .16);
    pointer-events: none;
}

/* =========================================================   MAIN testimonial========================================================= */
.main-testimonial {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 0 28px;
    padding-left: 48px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.55;
    color: #fff;
}

/* =========================================================   educator========================================================= */
.person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 48px;
    margin-bottom: 38px;
}

.person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .12);
}

.person strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 3px;
}

.person span {
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
}

.ob-btn {
    padding: 16px 28px;
}

/* =========================================================
   SECONDARY TESTIMONIAL
   NO BIG BLUE BOX
========================================================= */

.secondary-testimonial {
    position: relative;
    /* margin-left: 48px; */
    padding: 22px 0 20px 28px;
    border-left: 2px solid rgba(48, 169, 224, .55);
    overflow: hidden;
}

.educator-swiper .swiper-wrapper {
    height: 240px !important;
}


/* subtle glow behind it */
.secondary-testimonial::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 330px;
    left: -100px;
    top: -80px;
    background: radial-gradient(circle, rgba(31, 117, 190, .16), transparent 50%);
    pointer-events: none;
}

/* =========================================================   SECONDARY TEXT========================================================= */
.secondary-testimonial p {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
}

/* =========================================================   SECONDARY PERSON========================================================= */
.secondary-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.secondary-person img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(20%);
}

.secondary-person strong {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-bottom: 2px;
}

.secondary-person span {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

/* =========================================================   FOOTER / COUNTER========================================================= */
.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-left: 48px;
    max-width: 650px;
}

.testimonial-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: 1px;
}

.testimonial-counter strong {
    color: #38a9e0;
    font-size: 20px;
}

.testimonial-counter i {
    width: 35px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}

.testimonial-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .35);
}

/* =========================================================   SLIDE ANIMATION========================================================= */
.educator-swiper .swiper-slide {
    opacity: 0;
    transition: opacity .45s ease;
}

.educator-swiper .swiper-slide-active {
    opacity: 1;
}

.application-illustration {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 430px;
    overflow: visible;
}

.application-plane-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}


/* ==========================================
   DOTTED TRAIL
========================================== */

.application-trail {
    fill: none;
    /* stroke: #b7a9ed; */
    stroke: #39a6dd5e;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 6 13;
    opacity: .65;
    animation:
        applicationTrail 1.5s linear infinite;
}

@keyframes applicationTrail {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -19;
    }
}


/* ==========================================
   SOFT TRAIL
========================================== */

.application-trail-soft {
    fill: none;
    stroke: #b7a9ed;
    stroke-width: 6;
    stroke-linecap: round;
    opacity: 0;
}


/* ==========================================
   PLANE
========================================== */

.application-plane {
    /* transform:
                translate(-470px, 70px); */
    /* animation:
                applicationPlaneFly 6s cubic-bezier(.55, .05, .35, 1) infinite; */
}


/* ==========================================
   PLANE JOURNEY
========================================== */

@keyframes applicationPlaneFly {
    0% {
        transform:
            translate(-470px, 70px);
    }

    8% {
        transform:
            translate(-400px, 95px);
    }

    22% {
        transform:
            translate(-285px, 160px);
    }

    38% {
        transform:
            translate(-155px, 225px);
    }

    55% {
        transform:
            translate(-20px, 235px);
    }

    70% {
        transform:
            translate(90px, 190px);
    }

    84% {
        transform:
            translate(170px, 125px);
    }

    94% {
        transform:
            translate(220px, 70px);
    }

    100% {
        transform:
            translate(235px, 40px);
    }
}

/* =========================================================   MOBILE========================================================= */
@media (max-width: 767px) {
    .testimonial-heading-row {
        display: block;
    }

    .testimonial-navigation {
        margin-top: 20px;
    }

    .main-testimonial {
        font-size: 18px;
        padding-left: 38px;
    }

    .person {
        padding-left: 38px;
    }

    .secondary-testimonial {
        margin-left: 38px;
    }

    .testimonial-footer {
        padding-left: 38px;
    }
}

/* =========================================================           RESPONSIVE        ========================================================= */
@media (max-width: 1199px) {
    .openings-intro p {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-small {
        max-width: 100%;
    }

    .section-title br {
        display: none;
    }

    .hero-grid {
        margin: 60px 0;
    }
}

@media (max-width: 1100px) {

    .hero-grid,
    .educator-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-visual {
        min-height: 550px;
    }

    .hero-image-wrap {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .educator-content {
        padding-right: 0;
    }

    .educator-image {
        width: 600px;
        max-width: 100%;
        margin: auto;
    }

    .openings-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .openings-intro {
        position: static;
    }

    .openings-intro .section-title {
        text-align: center;
    }

    .openings-intro .section-line {
        margin-left: auto;
    }

    .openings-intro p {
        margin: auto;
        /* text-align: center; */
    }

    .unsolicited-inner {
        grid-template-columns: 1fr;
    }

    .paper-plane {
        opacity: .25;
        right: -100px;
    }
}

@media (max-width: 800px) {
    .career-hero {
        padding-top: 60px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-image-wrap {
        width: 500px;
        height: 500px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: 35px 20px;
    }

    .pillar:not(:last-child)::after {
        right: 15%;
        left: 15%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: auto;
    }

    .qualities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality:nth-child(2)::after {
        display: none;
    }

    .quality:nth-child(3)::after {
        display: block;
    }

    .opening-item {
        grid-template-columns: 1fr auto;
    }

    .opening-department {
        display: none;
    }

    .community-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 45px 35px;
    }

    .community-tagline {
        font-size: 28px;
    }
}

@media (max-width: 550px) {
    .section-title br {
        display: block;
    }

    .hero-grid {
        margin: 0px 0;
    }

    .community-left {
        flex-wrap: wrap;
    }

    .community-inner {
        padding: 30px 20px;
    }

    .openings-section {
        padding: 40px 0 60px;
    }

    .educator-image {
        width: 100%;
    }

    .container {
        width: 90%;
    }

    .custom-form-wrapper {
        padding: 20px;
    }

    .hero-image-wrap {
        width: 390px;
        height: 390px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-badge {
        width: 100px;
        height: 100px;
        right: 0;
    }

    .qualities-grid {
        grid-template-columns: 1fr;
    }

    .quality {
        border-bottom: 1px dashed #d5dde6;
        padding: 35px 15px;
    }

    .quality::after {
        display: none !important;
    }

    .opening-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .opening-link {
        justify-self: start;
        margin-left: 70px;
    }

    .educator-image-main {
        width: 330px;
        height: 450px;
        left: 50%;
        transform: translateX(-50%);
    }

    .image-ring {
        width: 355px;
        height: 475px;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
    }

    .educator-image {
        height: 500px;
    }

    .featured-quote {
        padding: 30px 25px;
    }

    .community-left strong {
        font-size: 40px;
    }

    .community-icon {
        width: 100px;
        height: 100px;
    }

    .community-left .section-title .title-left {
        font-size: 1.5rem !important;
    }

    .community-left .section-title .title-right {
        font-size: 2rem !important;
    }
    .community-tagline {
        font-size: 26px;
        max-width: 100%;
    }
    .community-tagline br {
    display: none;
}
}