/* =========================================================
   JNK CAREER PAGE
========================================================= */

.jnk-career-page {
    --career-navy: #102d55;
    --career-navy-dark: #0a2343;
    --career-blue: #4d83c7;
    --career-blue-light: #6d9bd0;
    --career-teal: #32a7a8;
    --career-text: #172f52;
    --career-muted: #71839a;
    --career-border: #dfe6ee;
    --career-light: #f5f8fb;
    --career-white: #ffffff;
}


/* =========================================================
   GENERAL
========================================================= */

.jnk-career-page {
    color: var(--career-text);
    background: #fff;
}

.jnk-career-page *,
.jnk-career-page *::before,
.jnk-career-page *::after {
    box-sizing: border-box;
}

.jnk-career-page img {
    max-width: 100%;
    display: block;
}

.jnk-career-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--career-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================================
   CAREER HERO
========================================================= */

.jnk-career-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 54, .96) 0%,
            rgba(10, 39, 73, .88) 42%,
            rgba(10, 39, 73, .35) 75%,
            rgba(10, 39, 73, .15) 100%
        ),
        url("../img/career/career-hero.png")
        center center / cover no-repeat;
}

.jnk-career-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    top: 50px;
    margin-bottom: 55px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
}
.jnk-career-breadcrumb a {
    color: rgba(255, 255, 255, .7);
    transition: .3s ease;
}


.jnk-career-hero__overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.jnk-career-hero .container {
    position: relative;

    z-index: 2;

    width: 100%;
}

.jnk-career-hero__content {
    max-width: 720px;

    padding: 90px 0;
}

.jnk-career-hero .jnk-career-eyebrow {
    color: #72c7c7;
}

.jnk-career-hero h1 {
    margin: 0 0 28px;

    color: #fff;

    font-size: clamp(48px, 5vw, 78px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -2px;
}

.jnk-career-hero p {
    max-width: 620px;

    margin: 0 0 38px;

    color: rgba(255, 255, 255, .78);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.jnk-career-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    min-height: 56px;

    padding: 0 28px;

    border: 1px solid var(--career-teal);

    background: var(--career-teal);

    color: #fff !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.jnk-career-btn span {
    font-size: 20px;

    line-height: 1;

    transition: transform .3s ease;
}

.jnk-career-btn:hover {
    color: #fff !important;

    background: #279394;

    border-color: #279394;

    transform: translateY(-2px);
}

.jnk-career-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   INTRO
========================================================= */

.jnk-career-intro {
    padding: 130px 0;
}

.jnk-career-intro__content {
    max-width: 590px;

    padding-right: 50px;
}

.jnk-career-intro__content h2 {
    margin: 0 0 25px;

    color: var(--career-navy);

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.jnk-career-intro__content p {
    margin: 0 0 15px;

    color: var(--career-muted);

    font-size: 16px;

    line-height: 1.8;
}

.jnk-career-intro__image {
    position: relative;

    overflow: hidden;

    min-height: 500px;
}

.jnk-career-intro__image img {
    width: 100%;
    height: 100%;

    min-height: 500px;

    object-fit: cover;

    transition: transform .7s ease;
}

.jnk-career-intro__image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.jnk-career-section-heading {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}

.jnk-career-section-heading h2 {
    margin: 0 0 20px;

    color: var(--career-navy);

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.jnk-career-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--career-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   VALUES
========================================================= */

.jnk-career-values {
    padding: 125px 0;

    background: var(--career-light);
}

.jnk-career-value-card {
    height: 100%;

    padding: 42px 38px;

    background: #fff;

    border: 1px solid var(--career-border);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.jnk-career-value-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(16, 45, 85, .08);
}

.jnk-career-value-card__number {
    margin-bottom: 40px;

    color: var(--career-blue);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}

.jnk-career-value-card h3 {
    margin: 0 0 15px;

    color: var(--career-navy);

    font-size: 24px;

    font-weight: 600;
}

.jnk-career-value-card p {
    margin: 0;

    color: var(--career-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CAREER OPPORTUNITIES
========================================================= */

.jnk-career-opportunities {
    padding: 135px 0;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.jnk-career-categories {
    margin-bottom: 75px;
}

.jnk-career-category {
    position: relative;

    width: 100%;

    min-height: 330px;

    padding: 38px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;

    background: #fff;

    border: 1px solid var(--career-border);

    cursor: pointer;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.jnk-career-category:hover {
    transform: translateY(-7px);

    border-color: var(--career-blue-light);

    box-shadow: 0 25px 60px rgba(16, 45, 85, .10);
}

.jnk-career-category.is-active {
    background: var(--career-navy);

    border-color: var(--career-navy);
}

.jnk-career-category__number {
    display: block;

    margin-bottom: 55px;

    color: var(--career-blue);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}

.jnk-career-category.is-active
.jnk-career-category__number {
    color: #72c7c7;
}

.jnk-career-category__content {
    width: 100%;

    margin-top: auto;
}

.jnk-career-category h3 {
    margin: 0 0 17px;

    color: var(--career-navy);

    font-size: 28px;

    font-weight: 600;

    line-height: 1.2;
}

.jnk-career-category.is-active h3 {
    color: #fff;
}

.jnk-career-category p {
    min-height: 76px;

    margin: 0 0 28px;

    color: var(--career-muted);

    font-size: 14px;

    line-height: 1.7;
}

.jnk-career-category.is-active p {
    color: rgba(255, 255, 255, .68);
}

.jnk-career-category__link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding-top: 18px;

    border-top: 1px solid var(--career-border);

    color: var(--career-navy);

    font-size: 13px;

    font-weight: 700;
}

.jnk-career-category.is-active
.jnk-career-category__link {
    color: #fff;

    border-color: rgba(255, 255, 255, .2);
}

.jnk-career-category__link span {
    font-size: 20px;

    transition: transform .3s ease;
}

.jnk-career-category:hover
.jnk-career-category__link span {
    transform: translateX(5px);
}


/* =========================================================
   POSITION AREA
========================================================= */

.jnk-career-position-area {
    position: relative;

    min-height: 250px;
}

.jnk-career-position-empty {
    padding: 70px 30px;

    text-align: center;

    background: var(--career-light);

    border: 1px solid var(--career-border);
}

.jnk-career-position-empty .jnk-career-eyebrow {
    margin-bottom: 12px;
}

.jnk-career-position-empty h3 {
    margin: 0 0 12px;

    color: var(--career-navy);

    font-size: 30px;

    font-weight: 500;
}

.jnk-career-position-empty p {
    margin: 0;

    color: var(--career-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   POSITION LIST
========================================================= */

.jnk-career-position-list {
    display: none;
}

.jnk-career-position-list.is-active {
    display: block;
}

.jnk-career-job {
    display: grid;

    grid-template-columns: 70px minmax(0, 1fr) auto;

    align-items: center;

    gap: 30px;

    padding: 30px 0;

    border-top: 1px solid var(--career-border);

    transition: padding .3s ease;
}

.jnk-career-job:last-child {
    border-bottom: 1px solid var(--career-border);
}

.jnk-career-job:hover {
    padding-left: 10px;
    padding-right: 10px;
}

.jnk-career-job__number {
    color: var(--career-blue);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.jnk-career-job__content > span {
    display: block;

    margin-bottom: 8px;

    color: var(--career-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.jnk-career-job__content h3 {
    margin: 0 0 8px;

    color: var(--career-navy);

    font-size: 22px;

    font-weight: 600;
}

.jnk-career-job__content p {
    max-width: 680px;

    margin: 0;

    color: var(--career-muted);

    font-size: 14px;

    line-height: 1.7;
}

.jnk-career-job__link {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    color: var(--career-navy) !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.jnk-career-job__link span {
    font-size: 20px;

    transition: transform .3s ease;
}

.jnk-career-job__link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   CAREER CTA
========================================================= */

.jnk-career-cta {
    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            var(--career-navy-dark),
            var(--career-navy)
        );
}

.jnk-career-cta__inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.jnk-career-cta__content {
    max-width: 700px;
}

.jnk-career-cta .jnk-career-eyebrow {
    color: #72c7c7;
}

.jnk-career-cta h2 {
    margin: 0 0 20px;

    color: #fff;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.jnk-career-cta p {
    max-width: 620px;

    margin: 0;

    color: rgba(255, 255, 255, .7);

    font-size: 15px;

    line-height: 1.8;
}

.jnk-career-btn--light {
    flex-shrink: 0;

    background: #fff;

    border-color: #fff;

    color: var(--career-navy) !important;
}

.jnk-career-btn--light:hover {
    background: var(--career-teal);

    border-color: var(--career-teal);

    color: #fff !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .jnk-career-hero {
        min-height: 580px;
    }

    .jnk-career-intro {
        padding: 100px 0;
    }

    .jnk-career-values,
    .jnk-career-opportunities {
        padding: 100px 0;
    }

    .jnk-career-intro__content {
        padding-right: 25px;
    }

}


@media (max-width: 991px) {

    .jnk-career-hero {
        min-height: 560px;
    }

    .jnk-career-hero__content {
        max-width: 650px;
    }

    .jnk-career-intro__content {
        max-width: none;

        padding-right: 0;
    }

    .jnk-career-intro__image {
        margin-top: 45px;

        min-height: 420px;
    }

    .jnk-career-intro__image img {
        min-height: 420px;
    }

    .jnk-career-category {
        min-height: 300px;
    }

    .jnk-career-cta__inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .jnk-career-hero {
        min-height: 520px;

        background:
            linear-gradient(
                90deg,
                rgba(7, 28, 54, .92),
                rgba(7, 28, 54, .75)
            ),
            url("../img/career/career-hero.jpg")
            center center / cover no-repeat;
    }

    .jnk-career-hero__content {
        padding: 70px 0;
    }

    .jnk-career-hero h1 {
        font-size: 45px;

        letter-spacing: -1px;
    }

    .jnk-career-hero p {
        font-size: 15px;
    }

    .jnk-career-intro,
    .jnk-career-values,
    .jnk-career-opportunities {
        padding: 80px 0;
    }

    .jnk-career-section-heading {
        margin-bottom: 45px;
    }

    .jnk-career-section-heading h2,
    .jnk-career-intro__content h2,
    .jnk-career-cta h2 {
        font-size: 38px;
    }

    .jnk-career-value-card {
        padding: 32px;
    }

    .jnk-career-category {
        min-height: 280px;

        padding: 30px;
    }

    .jnk-career-category__number {
        margin-bottom: 35px;
    }

    .jnk-career-job {
        grid-template-columns: 45px minmax(0, 1fr);

        gap: 18px;

        padding: 25px 0;
    }

    .jnk-career-job__link {
        grid-column: 2;

        justify-self: start;

        margin-top: 8px;
    }

    .jnk-career-cta {
        padding: 75px 0;
    }

}


@media (max-width: 575px) {

    .jnk-career-hero {
        min-height: 500px;
    }

    .jnk-career-hero h1 {
        font-size: 39px;
    }

    .jnk-career-eyebrow {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .jnk-career-intro__image,
    .jnk-career-intro__image img {
        min-height: 330px;
    }

    .jnk-career-category {
        min-height: auto;
    }

    .jnk-career-category p {
        min-height: auto;
    }

    .jnk-career-job {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .jnk-career-job__number {
        margin-bottom: 5px;
    }

    .jnk-career-job__link {
        grid-column: auto;
    }

    .jnk-career-btn {
        width: 100%;
    }

    .jnk-career-cta__action {
        width: 100%;
    }

}
/* =========================================================
   CAREER JOB DETAIL MODAL
========================================================= */

.jnk-career-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


/* =========================================================
   MODAL ACTIVE
========================================================= */

.jnk-career-modal.is-open {
    display: flex;

    opacity: 1;

    visibility: visible;
}


/* =========================================================
   BACKDROP
========================================================= */

.jnk-career-modal__backdrop {
    position: absolute;

    inset: 0;

    background: rgba(5, 22, 43, .78);

    backdrop-filter: blur(5px);
}


/* =========================================================
   DIALOG
========================================================= */

.jnk-career-modal__dialog {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1180px;

    max-height: 90vh;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .25);

    transform: translateY(30px) scale(.98);

    transition:
        transform .4s ease;
}

.jnk-career-modal.is-open
.jnk-career-modal__dialog {
    transform: translateY(0) scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.jnk-career-modal__close {
    position: absolute;

    top: 24px;
    right: 24px;

    z-index: 10;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .08);

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}

.jnk-career-modal__close:hover {
    background: rgba(255, 255, 255, .18);

    transform: rotate(90deg);
}

.jnk-career-modal__close span {
    position: absolute;

    width: 18px;
    height: 1px;

    background: #fff;
}

.jnk-career-modal__close span:first-child {
    transform: rotate(45deg);
}

.jnk-career-modal__close span:last-child {
    transform: rotate(-45deg);
}


/* =========================================================
   MODAL BODY
========================================================= */

.jnk-career-modal__body {
    display: grid;

    grid-template-columns: 340px minmax(0, 1fr);

    max-height: 90vh;
}


/* =========================================================
   SIDEBAR
========================================================= */

.jnk-career-modal__sidebar {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 620px;

    padding: 65px 42px 42px;

    background:
        linear-gradient(
            145deg,
            #0a2343,
            #123b68
        );

    color: #fff;

    overflow: hidden;
}

.jnk-career-modal__sidebar::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -120px;
    bottom: -100px;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;
}

.jnk-career-modal__sidebar::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -80px;
    bottom: -60px;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 50%;
}


/* =========================================================
   SIDEBAR EYEBROW
========================================================= */

.jnk-career-modal__eyebrow {
    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 22px;

    color: #72c7c7;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    line-height: 1.5;

    text-transform: uppercase;
}


/* =========================================================
   JOB TITLE
========================================================= */

.jnk-career-modal__sidebar h2 {
    position: relative;

    z-index: 2;

    margin: 0 0 45px;

    color: #fff;

    font-size: 38px;

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -1px;
}


/* =========================================================
   META
========================================================= */

.jnk-career-modal__meta {
    position: relative;

    z-index: 2;
}

.jnk-career-modal__meta-item {
    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, .15);
}

.jnk-career-modal__meta-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.jnk-career-modal__meta-label {
    display: block;

    margin-bottom: 7px;

    color: rgba(255, 255, 255, .5);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.jnk-career-modal__meta-item strong {
    display: block;

    color: #fff;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;
}


/* =========================================================
   SIDEBAR ACTION
========================================================= */

.jnk-career-modal__sidebar-action {
    position: relative;

    z-index: 2;

    margin-top: auto;

    padding-top: 40px;
}

.jnk-career-modal__sidebar-action .jnk-career-btn {
    width: 100%;
}


/* =========================================================
   CONTENT
========================================================= */

.jnk-career-modal__content {
    max-height: 90vh;

    padding: 65px 65px 70px;

    overflow-y: auto;

    scrollbar-width: thin;

    scrollbar-color:
        #b8c6d5
        transparent;
}

.jnk-career-modal__content::-webkit-scrollbar {
    width: 5px;
}

.jnk-career-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.jnk-career-modal__content::-webkit-scrollbar-thumb {
    background: #b8c6d5;

    border-radius: 10px;
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.jnk-career-modal__section {
    padding-bottom: 48px;

    margin-bottom: 48px;

    border-bottom: 1px solid var(--career-border);
}

.jnk-career-modal__section:last-of-type {
    margin-bottom: 0;

    border-bottom: 0;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.jnk-career-modal__section-label {
    display: block;

    margin-bottom: 13px;

    color: var(--career-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.jnk-career-modal__section h3 {
    margin: 0 0 20px;

    color: var(--career-navy);

    font-size: 28px;

    font-weight: 600;

    line-height: 1.2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.jnk-career-modal__section p {
    margin: 0 0 14px;

    color: var(--career-muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   LIST
========================================================= */

.jnk-career-modal__section ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.jnk-career-modal__section li {
    position: relative;

    padding-left: 25px;

    margin-bottom: 13px;

    color: var(--career-muted);

    font-size: 14px;

    line-height: 1.75;
}

.jnk-career-modal__section li:last-child {
    margin-bottom: 0;
}

.jnk-career-modal__section li::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--career-teal);
}


/* =========================================================
   MOBILE ACTION
========================================================= */

.jnk-career-modal__mobile-action {
    display: none;

    padding-top: 25px;

    margin-top: 25px;

    border-top: 1px solid var(--career-border);
}


/* =========================================================
   BODY LOCK
========================================================= */

body.jnk-career-modal-open {
    overflow: hidden;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .jnk-career-modal {
        padding: 20px;
    }

    .jnk-career-modal__dialog {
        max-height: 94vh;
    }

    .jnk-career-modal__body {
        grid-template-columns: 280px minmax(0, 1fr);

        max-height: 94vh;
    }

    .jnk-career-modal__sidebar {
        min-height: 600px;

        padding: 55px 30px 30px;
    }

    .jnk-career-modal__sidebar h2 {
        font-size: 32px;
    }

    .jnk-career-modal__content {
        padding: 55px 40px;
    }

}


@media (max-width: 767px) {

    .jnk-career-modal {
        align-items: flex-start;

        padding: 10px;
    }

    .jnk-career-modal__dialog {
        max-height: calc(100vh - 20px);
    }

    .jnk-career-modal__body {
        display: block;

        max-height: calc(100vh - 20px);

        overflow-y: auto;
    }

    .jnk-career-modal__sidebar {
        min-height: auto;

        padding: 50px 28px 30px;
    }

    .jnk-career-modal__sidebar h2 {
        margin-bottom: 30px;

        font-size: 32px;
    }

    .jnk-career-modal__meta-item {
        padding: 14px 0;
    }

    .jnk-career-modal__sidebar-action {
        display: none;
    }

    .jnk-career-modal__content {
        max-height: none;

        padding: 40px 28px 45px;

        overflow-y: visible;
    }

    .jnk-career-modal__section {
        padding-bottom: 35px;

        margin-bottom: 35px;
    }

    .jnk-career-modal__section h3 {
        font-size: 24px;
    }

    .jnk-career-modal__mobile-action {
        display: block;
    }

    .jnk-career-modal__mobile-action .jnk-career-btn {
        width: 100%;
    }

    .jnk-career-modal__close {
        top: 16px;
        right: 16px;

        width: 40px;
        height: 40px;
    }

}


@media (max-width: 575px) {

    .jnk-career-modal {
        padding: 0;
    }

    .jnk-career-modal__dialog {
        width: 100%;

        max-height: 100vh;
    }

    .jnk-career-modal__body {
        max-height: 100vh;
    }

    .jnk-career-modal__sidebar {
        padding: 48px 22px 25px;
    }

    .jnk-career-modal__sidebar h2 {
        font-size: 29px;
    }

    .jnk-career-modal__content {
        padding: 35px 22px 40px;
    }

}