﻿@font-face {
    font-family: "GillSansNovaforJL-Bold";
    src: url("../Fonts/GillSansNovaforJL-Bold.woff2") format("woff2"), url("../Fonts/GillSansNovaforJL-Bold.otf") format("opentype");
}

@font-face {
    font-family: "GillSansNovaforJL-Light";
    src: url("../fonts/GillSansNovaforJL-Light.woff2") format("woff2"), url("../fonts/GillSansNovaforJL-Light.otf") format("opentype");
}

@font-face {
    font-family: "GillSansNovaforJL-Medium";
    src: url("../Fonts/GillSansNovaforJL-Medium.woff2") format("woff2"), url("../Fonts/GillSansNovaforJL-Medium.otf") format("opentype");
}

@font-face {
    font-family: "GillSansNovaforJL-SemiBold";
    src: url("../Fonts/GillSansNovaforJL-SemiBold.woff2") format("woff2"), url("../Fonts/GillSansNovaforJL-SemiBold.otf") format("opentype");
}

@font-face {
    font-family: "GillSansNovaforJL-UltraLt";
    src: url("../Fonts/GillSansNovaforJL-UltraLt.woff2") format("woff2"), url("../Fonts/GillSansNovaforJL-UltraLt.otf") format("opentype");
}

:root {
    /* Font families */
    --font-body: "GillSansNovaforJL-Light", "GillSansNovaforJL-UltraLt", Arial, sans-serif;
    --font-ui: "GillSansNovaforJL-Medium", "GillSansNovaforJL-SemiBold", Arial, sans-serif;
    --font-heading: "GillSansNovaforJL-SemiBold", "GillSansNovaforJL-Bold", Arial, sans-serif;
    /* Font sizes */
    --font-size-body: clamp(1rem, 1.1vw + 0.8rem, 1.2rem);
    --font-size-h1: clamp(1.8rem, 2.2vw + 1.2rem, 2.4rem);
    --font-size-h2: clamp(1.5rem, 1.8vw + 1rem, 2rem);
    --font-size-h3: clamp(1.3rem, 1.6vw + 0.9rem, 1.8rem);
    --font-size-h4: clamp(1.2rem, 1.4vw + 0.8rem, 1.6rem);
    --font-size-h5: clamp(1.1rem, 1.3vw + 0.7rem, 1.5rem);
    --font-size-h6: clamp(1rem, 1.2vw + 0.6rem, 1.4rem);
    /* Colours */
    --green-dark: #003836;
    --green-light: #E2F3EA;
    --accent-orange: #F1B472;
    --accent-green: #04B084;
    --jlp-green: #003836;
    --jlp-cream: #FBF2EA;
    --jlp-offwhite: #F5F4F2;
    --jlp-peach: #FFE1DD;
    --jlp-salmon: #FFB3AB;
    --jlp-mustard: #f3b974;
    --jlp-grey: #6b6f72;
    --chip: #e8f3ef;
    --choice-on-bg: #04B084;
    --choice-on-color: var(--jlp-green);
    --rz-input-font-size: var(--font-size-body);
}


body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.6;
}

h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    line-height: 1.2;
}

h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    line-height: 1.3;
}

h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    line-height: 1.4;
}

h4 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    line-height: 1.4;
}

h5 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h5);
    line-height: 1.5;
}

h6 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h6);
    line-height: 1.5;
}


.btn, .cta-btn, .nav-min a, .brand-mark, .badge {
    font-family: var(--font-ui);
}

.fw-bold {
    font-family: "GillSansNovaforJL-Bold", var(--font-ui) !important;
    font-weight: normal !important;
}

.fw-semibold {
    font-family: "GillSansNovaforJL-SemiBold", var(--font-ui) !important;
    font-weight: normal !important;
}

.lead {
    font-family: var(--font-body);
}

.section {
    padding: 56px 0;
}

.section-tight {
    padding: 36px 0;
}

.rounded-2xl {
    border-radius: 1.25rem;
}

.shadow-soft {
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.bg-cream {
    background: var(--jlp-cream) !important;
}

.bg-offwhite {
    background: var(--jlp-offwhite);
}

.bg-green {
    background: var(--jlp-green);
}

.bg-peach {
    background: var(--jlp-peach);
}

.bg-light-green {
    background: var(--green-light) !important;
}

.text-white {
    color: #fff !important;
}

    .text-white a {
        color: #fff !important;
        text-decoration: underline;
    }

.text-salmon {
    color: var(--jlp-salmon) !important;
}
    .text-salmon a {
        color: var(--jlp-salmon) !important;
        text-decoration: underline;
    }

.text-peach {
    color: var(--jlp-peach) !important;
}
    .text-peach a {
        color: var(--jlp-peach) !important;
        text-decoration: underline;
    }

.text-green, 
.text-dark,
.text-success {
    color: var(--jlp-green) !important;
}
    .text-green a {
        color: var(--jlp-green) !important;
        text-decoration: underline;
    }

.text-grey {
    color: var(--jlp-grey) !important;
}
    .text-grey a {
        color: var(--jlp-grey) !important;
        text-decoration: underline;
    }

.text-cream {
    color: var(--accent-orange) !important;
}
    .text-cream a {
        color: var(--accent-orange) !important;
        text-decoration: underline;
    }

.text-gold {
    color: var(--jlp-mustard) !important;
}
    .text-gold a {
        color: var(--jlp-mustard) !important;
        text-decoration: underline;
    }

.text-mint {
    color: var(--green-light) !important;
}

    .text-mint a {
        color: var(--green-light) !important;
        text-decoration: underline;
    }

.jlp-top-accent {
    background: var(--green-dark);
    height: 48px; 
    width: 100%;
}

.jlp-brand-band {
    background: var(--green-light);
    width: 100%;
}

.jlp-nav-band {
    background: var(--green-dark);
    width: 100%;
    border-bottom: 4px solid var(--accent-green);
    padding: 0 !important;
}

.jlp-link {
    color: #fff !important;
    line-height: 1.1;
    padding-top: .6rem !important; 
    padding-bottom: .6rem !important;
    position: relative;
    border-radius: 0;
}

.nav-min a.active {
    border-bottom: none !important;
}

.jlp-link.active {
    background: var(--jlp-cream);
    color: var(--green-dark) !important;
}

.jlp-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px; 
    height: 4px;
    background: transparent;
}

.jlp-link.active::after {
    background: var(--accent-orange);
}

.jlp-link:hover,
.jlp-link:focus {
    opacity: .95;
    color: #fff;
}

@media (max-width: 991.98px) {
    .jlp-nav-band .navbar-collapse {
        padding: .5rem 0;
    }

    .jlp-link {
        padding: .5rem .75rem !important;
    }
}

.alert-info {
    color: var(--jlp-green);
    background-color: var(--jlp-peach);
    border: none;
}

.hero-jlp {
    --hero-min-h: clamp(360px, 52vh, 620px);
    min-height: var(--hero-min-h);
    padding-top: 0; 
    padding-bottom: 0;
}

.hero-body {
    min-height: var(--hero-min-h);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 48px 16px;
}

@media (max-width: 991.98px) {
    .hero-body {
        min-height: auto;
        padding: 24px 16px;
    }
}

.hero-title {
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.hero-kicker {
    font-family: "GillSansNovaforJL-Medium","GillSansNovaforJL-Light",Arial,sans-serif;
    color: #1b1b1b;
}

.hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(42vw,640px);
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-confetti {
    position: absolute;
    top: 0; 
    right: -8%;
    width: 45vw;
    z-index: 3; 
    pointer-events: none;
    user-select: none;
}

@media (max-width: 991.98px) {
    .hero-media {
        position: relative;
        width: 100%;
        inset: auto;
        margin-bottom: 1rem;
    }

    .hero-img {
        height: auto;
    }

    .hero-confetti {
        right: 16px;
        top: 8px;
    }
}

.hero-chevrons {
    height: 90%;
    width: 45vw;
    pointer-events: none;
    user-select: none;
}

.feature-jlp {
    --feature-min-h: clamp(420px, 56vh, 680px);
    min-height: var(--feature-min-h);
}

.feature-body {
    min-height: var(--feature-min-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 16px; 
    position: relative;
    z-index: 4;
}

.feature-title {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
}

.feature-copy {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
    color: #1b1b1b;
}

.feature-chevrons {
    height: 100%;
    width: auto;
    pointer-events: none;
    user-select: none;
}

.feature-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(48vw, 760px); 
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.feature-pattern-back,
.feature-photo,
.feature-pattern-front {
    position: absolute;
    display: block;
    max-width: none;
}

.feature-pattern-back {
    z-index: 0;
    right: 8%;
    top: 6%;
    width: 115%;
    transform: translate(8%,-6%);
}

.feature-photo {
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 90%;
    height: auto;
}

.feature-pattern-front {
    z-index: 2;
    left: -6%;
    bottom: 12%;
    width: 55%;
}

.feature-jlp.left-img .feature-media {
    left: 0;
    right: auto; 
}

.feature-jlp.left-img .feature-pattern-back {
    left: 8%;
    right: auto;
    top: 6%;
    width: 100%;
    transform: translate(-8%,-6%);
}

.feature-jlp.left-img .feature-photo {
    left: 0;
    right: auto;
    bottom: 0;
    width: 90%;
}

.feature-jlp.left-img .feature-pattern-front {
    right: 0%;
    left: auto; 
    bottom: -40%;
    width: 100%;
}

@media (max-width: 991.98px) {
    .feature-body {
        min-height: auto;
        padding: 24px 16px;
    }

    .feature-media {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 8px;
    }

    .feature-jlp.left-img .feature-pattern-back {
        left: 4%;
        top: 2%;
        width: 120%;
        transform: translate(-6%,-4%);
    }

    .feature-jlp.left-img .feature-photo {
        position: relative;
        width: 100%;
        left: auto;
        bottom: auto;
    }

    .feature-jlp.left-img .feature-pattern-front {
        right: -4%;
        bottom: 10%;
        width: 58%;
    }
}

.testimonial-jlp {
    --t-min-h: clamp(420px, 56vh, 660px);
    min-height: var(--t-min-h);
    background: var(--jlp-green); 
    --t-strip-h: 26px;
    --t-strip-color: var(--jlp-salmon, #ffd2be);
    position: relative;
}

    .testimonial-jlp::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: var(--t-strip-h);
        background: var(--t-strip-color);
        pointer-events: none;
    }

.testimonial-body {
    min-height: var(--t-min-h);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 48px 16px; 
    position: relative;
    z-index: 4; 
}

.testimonial-title {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
    color: var(--jlp-green, #0f3d3a);
    line-height: 1.35;
}

.testimonial-copy {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
    color: #1b1b1b;
}

.testimonial-credit {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
    color: #1b1b1b;
}

.testimonial-media {
    position: absolute;
    top: 0;
    right: -60px;
    bottom: 0;
    width: 40vw;
    z-index: 1;
}

.testimonial-chevrons {
    height: 100%;
    width: 40vw;
    pointer-events: none;
    user-select: none;
}

.t-pattern-grid,
.t-photo {
    position: absolute;
    display: block;
    max-width: none;
}


.t-pattern-grid {
    z-index: 0;
    right: 0%;
    top: 0;
    width: 73%;
}

.t-photo {
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 78%;
    height: auto;
}

@media (max-width: 991.98px) {
    .testimonial-body {
        min-height: auto;
        padding: 24px 16px;
    }

    .testimonial-media {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 8px;
    }

    .t-pattern-grid {
        right: 2%;
        top: 0;
        width: 110%;
    }

    .t-pattern-dots {
        right: 6%;
        bottom: 6%;
        width: 64%;
    }

    .t-photo {
        position: relative;
        width: 86%;
        right: auto;
        bottom: auto;
        margin-left: auto;
    }
}

.modules-jlp {
    background: var(--jlp-offwhite);
    padding: 48px 0 56px;
    position: relative;
    --m-strip-h: 4px;
    --m-strip-color: var(--accent-orange, #f3b974); 
}

    .modules-jlp::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: var(--m-strip-h);
        background: var(--m-strip-color);
        pointer-events: none;
    }

.modules-title {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
}

.modules-sub,
.modules-instruction {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
    color: #333;
}

.modules-strip {
    background: var(--jlp-salmon);
    border-radius: 8px 8px 0 0;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    overflow: hidden;
    margin-top: 14px;
}

    .modules-strip .nav-link {
        padding: 0 !important;
        border: 0 !important;
        background: transparent;
    }

.mod-tab {
    display: grid; 
    place-items: center;
    min-width: 0; 
    height: 84px; 
    box-sizing: border-box;
    background: rgba(255,255,255,.25);
    border-right: 2px solid rgba(0,0,0,.06);
    box-shadow: inset -3px 0 0 var(--jlp-offwhite);
    transition: background .18s ease, box-shadow .18s ease;
}

    .mod-tab:first-child {
        border-left: 0;
    }

    .mod-tab:last-child {
        border-right: 0;
    }

    .mod-tab:hover {
        background: rgba(255,255,255,.35);
    }

    .mod-tab.active {
        background: var(--jlp-peach);
    }

.mod-icon {
    display: block;
    width: clamp(18px, 6cqi, 44px); 
    height: auto;
    max-height: 60%; 
    object-fit: contain;
}

@supports not (width: 1cqi) {
    .mod-icon {
        width: clamp(18px, 8vw, 44px);
    }
}

.modules-jlp .tab-content {
    margin-top: 0;
    background-color: var(--jlp-peach);
}

.modules-panel {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-radius: 0 0 8px 8px;
    padding: 28px;
    margin-top: 0;
}

.panel-title {
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
}

.panel-bodycopy {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
    color: #333;
}

.panel-emph {
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Medium",Arial,sans-serif;
    color: var(--jlp-green, #0f3d3a);
}

.modules-accent-left {
    position: absolute;
    left: -7%;
    top: 0;
    bottom: 0;
    width: 11%;
    object-fit: cover;
    z-index: 0;
}

.modules-accent-corner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    z-index: 0;
}

#lang-slot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#language-selector {
    position: static;
    margin-left: auto;
    margin-top: 3px;
    background-color: var(--jlp-salmon);
    color: var(--jlp-green);
    border: 0;
    border-radius: 999px;
    padding: 6px 10px;
    line-height: 1.2;
}

.program-jlp {
    background: #ffffff;
    padding: 56px 0;
    position: relative;
}

    .program-jlp::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px; 
        background: var(--jlp-green);
        pointer-events: none;
    }

.program-title {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
}

.program-copy {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
    color: #1b1b1b;
}

.prog-chevrons {
    height: 26px;
    width: auto;
    display: block;
    margin-top: 18px;
    pointer-events: none;
    user-select: none;
}

.bubbles-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: clamp(16px, 3vw, 28px);
    align-items: center;
    justify-items: center;
}

.program-bubble {
    background: var(--jlp-mustard);
    color: var(--jlp-green);
    border-radius: 9999px;
    aspect-ratio: 1 / 1; 
    width: clamp(220px, 34vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
}

.program-bubble {
  width: clamp(220px, 34vw, 360px);
  background: var(--jlp-mustard);
  color: var(--jlp-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
}

@media (max-width: 1600px) {
  .program-bubble {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 1300px) {
    .program-bubble {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 1198px) { 
    .program-bubble {
        width: 300px; 
        height: 300px; 
    }
}

.bubble-icon {
    width: clamp(48px, 6vw, 72px);
    height: auto;
    display: block;
    margin: 6px auto;
}

.bubble-eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: .25rem;
}

.bubble-metric {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
    margin-top: .25rem;
}

.bubble-heading {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
}

.bubble-sub {
    max-width: 22ch;
    line-height: 1.35;
    margin-top: .25rem;
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt",Arial,sans-serif;
}

@media (max-width: 991.98px) {
    .bubbles-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .bubbles-wrap {
        grid-template-columns: 1fr;
    }

    .program-jlp {
        padding: 40px 0;
    }
}

.cta-jlp {
    --cta-min-h: clamp(360px, 52vh, 560px);
    position: relative;
    min-height: var(--cta-min-h);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%; 
    height: auto;
    pointer-events: none;
    z-index: 2; 
}

.cta-body {
    min-height: var(--cta-min-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 24px; 
    position: relative;
    z-index: 3; 
}

.cta-title {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold", Arial, sans-serif;
}

.cta-copy {
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt", Arial, sans-serif;
    color: #1b1b1b;
}

.cta-media {
    position: absolute;
    right: 48px;
    top: 0;
    bottom: 0;
    width: 100%; 
    z-index: 1;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-btn {
    display: inline-flex;
    flex: 0 0 auto; 
    width: max-content; 
    white-space: nowrap; 
    align-items: center;
    gap: clamp(14px, 2.1vw, 24px);
    background: var(--jlp-green, #0f3d3a);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold", Arial, sans-serif;
    padding: clamp(10px, 1vw, 16px) clamp(12px, 1.2vw, 16px); 
    padding-left: clamp(22px, 2.6vw, 36px); 
    border-radius: 9999px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    transition: transform .12s ease, filter .12s ease;
}

    .cta-btn:focus {
        outline: 3px solid rgba(19, 116, 102, .35);
        outline-offset: 2px;
    }

    .cta-btn:hover {
        filter: brightness(0.96);
        transform: translateY(-1px);
    }

.cert-btn {
    display: inline-flex;
    flex: 0 0 auto;
    width: max-content;
    white-space: nowrap;
    align-items: center;
    gap: clamp(14px, 2.1vw, 24px);
    background: var(--accent-green);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold", Arial, sans-serif;
    padding: clamp(10px, 1vw, 16px) clamp(12px, 1.2vw, 16px);
    padding-left: clamp(22px, 2.6vw, 36px);
    border-radius: 9999px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    transition: transform .12s ease, filter .12s ease;
}

    .cert-btn:focus {
        outline: 3px solid rgba(19, 116, 102, .35);
        outline-offset: 2px;
    }

    .cert-btn:hover {
        filter: brightness(0.96);
        transform: translateY(-1px);
    }

.cert-knob {
    width: clamp(56px, 5.5vw, 76px);
    height: clamp(56px, 5.5vw, 76px);
    border-radius: 50%;
    background: #fff;
    color: var(--accent-green);
    border: clamp(8px, .9vw, 12px) solid #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-right: -2px;
}

.cta-knob {
    width: clamp(56px, 5.5vw, 76px);
    height: clamp(56px, 5.5vw, 76px);
    border-radius: 50%;
    background: #fff;
    color: var(--jlp-green, #0f3d3a);
    border: clamp(8px, .9vw, 12px) solid #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-right: -2px; 
}

@media (max-width: 991.98px) {
    .cta-media {
        position: relative;
        width: 100%;
        height: auto;
        order: 2;
    }

    .cta-img {
        height: auto;
    }

    .cta-pattern {
        width: 85%;
    }

    .cta-body {
        min-height: auto;
        padding: 28px 16px;
        align-items: center;
    }
}
@media (max-width: 991.98px) {
    .cta-media {
        left: 0;
    }
}

.cta-btn,
.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active,
.cta-btn:visited {
    color: #fff !important;
    text-decoration: none !important;
}

    .cta-btn:focus-visible {
        outline: 3px solid rgba(19,116,102,.35);
        outline-offset: 2px;
    }

    .cta-btn .cta-text {
        color: inherit;
        text-decoration: none;
    }

.cert-btn,
.cert-btn:hover,
.cert-btn:focus,
.cert-btn:active,
.cert-btn:visited {
    color: var(--jlp-green) !important;
    text-decoration: none !important;
}

    .cert-btn:focus-visible {
        outline: 3px solid rgba(19,116,102,.35);
        outline-offset: 2px;
    }

    .cert-btn .cert-text {
        color: inherit;
        text-decoration: none;
    }

.vacancies-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.object-fit-cover {
    object-fit: cover;
}


@media (max-width: 768px) {
    .vacancies-image {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .vacancies-body {
        width: 100%;
        padding: 2rem;
    }
}


.jlp-footer {
    background: var(--jlp-green);
}

.footer-logo {
    max-height: 64px;
    height: auto;
}

.footer-links li + li {
    margin-top: .6rem;
}

.footer-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-family: "GillSansNovaforJL-Light","GillSansNovaforJL-UltraLt", Arial, sans-serif;
}

    .footer-link:hover,
    .footer-link:focus {
        color: var(--jlp-peach);
        text-decoration: none;
        outline: none;
    }

@media (max-width: 991.98px) {
    .jlp-footer-slab {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 992px) {
    .jlp-footer-slab {
        padding-left: 24px;
        padding-right: 24px;
    }
}


.module-hero {
    position: relative;
    min-height: 400px;
}

.col-lg-4.position-relative { 
}

.module-media {
    position: absolute;
    inset: 0; 
    display: block;
}

.m-photo {
    display: block;
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.module-chevrons {
    height: auto;
    width: 45vw;
    pointer-events: none;
    user-select: none;
}

.rz-card.step-card,
.rz-panel.step-card,
.rz-widget.step-card,
.rz-g .rz-card.step-card {
    background: var(--green-light) !important;
    border: 0 !important;
    border-radius: 90px !important;
    box-shadow: none !important;
    padding: 22px 28px !important;
    overflow: hidden; 
}

.rz-card.step-card--alt,
.rz-panel.step-card--alt,
.rz-widget.step-card--alt,
.rz-g .rz-card.step-card--alt {
    background: var(--jlp-cream) !important; 
    border: 0 !important;
    border-radius: 90px !important;
    box-shadow: none !important;
    padding: 22px 28px !important;
    overflow: hidden; 
}

.step-card .rz-row,
.step-card .rz-column,
.step-card .rz-g {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.step-title {
    margin: 0 0 .35rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    line-height: 1.25;
}

.step-desc {
    margin: 0 0 .75rem;
    font-size: clamp(.95rem,1.2vw,1.05rem);
    line-height: 1.55;
}

.step-est {
    margin: .25rem 0 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: clamp(.9rem,1vw,1rem);
}

.step-icon-col {
    padding: 8px 12px;
}

.step-content {
    padding: 8px 12px;
}

.rz-align-items-normal {
    align-items: center !important;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}

    .step-icon img {
        display: block;
        height: auto;
    }

.step-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-start-step,
.btn-start-step.rz-button {
    background: var(--jlp-salmon) !important;
    color: var(--jlp-green) !important;
    border: 0 !important;
    border-radius: 9999px !important;
    padding: 10px 18px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: none !important;
    font-size: var(--font-size-body);
}
    .btn-start-step:hover {
        filter: brightness(0.97);
    }

.btn-review-step,
.btn-review-step.rz-button {
    background: var(--jlp-green) !important;
    color: var(--accent-orange) !important;
    border: 0 !important;
    border-radius: 9999px !important;
    padding: 10px 18px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: none !important;
    font-size: var(--font-size-body);
}

    .btn-review-step:hover {
        filter: brightness(0.97);
    }

.step-done {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: clamp(.9rem,1vw,1rem);
    text-transform: uppercase;
}

    .step-done .step-done__icon {
        color: #1fbf77;
    }

.step-file {
    margin-left: .5rem;
    font-size: 1.25rem;
    color: #0f3d3a;
}

    .step-file:hover {
        color: #0b2f2d;
    }

.step-card img.img-fluid {
    height: auto;
    max-width: 100%;
}

.feedback-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

    .feedback-card :where(h4, p, ul, ol) {
        margin: 0 0 .75rem;
    }

    .feedback-card :where(p:last-child, ul:last-child, ol:last-child) {
        margin-bottom: 0;
    }


.module-dialog {
    background: var(--jlp-green) !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
    height: var(--dlg-h, 80vh);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

    .module-dialog .rz-dialog-titlebar,
    .module-dialog .rz-dialog-content,
    .module-dialog .rz-dialog-actions {
        background: var(--jlp-green) !important;
        border-color: transparent !important;
        color: #eaf3f0;
    }

    .module-dialog .rz-dialog-content {
        padding: 0 !important;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 0 !important;
    }

    .module-dialog .rz-dialog-titlebar {
        padding: 8px 16px !important;
    }

    .module-dialog .rz-dialog-titlebar .rz-dialog-title,
    .module-dialog .rz-dialog-titlebar .rz-dialog-close {
        color: #eaf3f0 !important;
    }

    .module-dialog .rz-dialog-content > .rz-dialog-content-scroll,
    .module-dialog .rz-dialog-content > .rz-dialog-content-wrapper {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

.module-dialog .rz-resizable-handle {
    background: rgba(255,255,255,.15);
}

.container.module-step-wrap {
    background: var(--jlp-green);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0; 
    padding: clamp(16px, 3vw, 28px) clamp(12px, 2vw, 24px);
}

.module-step-wrap > .row {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column; 
    min-height: 0;
}

    .module-step-wrap > .row > [class*="col-"] {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .module-step-wrap .step-panel {
        margin-bottom: 12px;
    }

    .module-step-wrap .btn-block {
        display: block;
        width: 100%;
    }

    .module-step-wrap .btn-outline-jlp + .btn-outline-jlp {
        margin-top: 12px;
    }

    .module-step-wrap .text-green.small {
        opacity: .9;
    }

    .module-step-wrap.on-dark .panel-title,
    .module-step-wrap.on-dark .panel-bodycopy {
        color: #eaf3f0;
    }

.step-panel {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    margin-bottom: 12px;
}

.step-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
}

    .step-scroll::-webkit-scrollbar {
        width: 10px;
    }

    .step-scroll::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.15);
        border-radius: 8px;
    }

    .step-scroll::-webkit-scrollbar-track {
        background: rgba(0,0,0,.04);
    }

.step-actions {
    margin-top: auto; 
    padding-top: 8px;
    padding-bottom: 20px;
}

@supports (position: sticky) {
    .step-actions {
        position: sticky;
        bottom: 0;
        background: var(--jlp-green);
    }
}

.content-rich img {
    max-width: 100%;
    height: auto;
}

.content-rich h1, .content-rich h2, .content-rich h3 {
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
}

.content-rich a {
    color: var(--jlp-mustard);
    text-decoration: underline;
}

    .content-rich a:hover {
        text-decoration: none;
    }

.accordion-body a {
    color: var(--jlp-green);
    text-decoration: underline;
}


.btn-area {
    padding: 0 24px 16px; 
}

    .btn-area .btn-pill.btn-block {
        width: 100%;
    }

.rz-button.rz-unstyled,
.rz-button.rz-unstyled:hover,
.rz-button.rz-unstyled:focus,
.rz-button.rz-unstyled:active {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    padding: 0 !important; 
    border-radius: inherit !important;
}

    .rz-button.rz-unstyled .rz-button-text,
    .rz-button.rz-unstyled .rz-button-icon {
        color: inherit !important;
        line-height: inherit !important;
    }

    .rz-button.rz-unstyled .rz-ripple,
    .rz-button.rz-unstyled .rz-state-layer {
        display: none !important;
    }

.btn,
.btn-pill,
.rz-button.btn-pill,
.rz-button.btn-pill:hover,
.rz-button.btn-pill:focus,
.rz-button.btn-pill:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 56px !important;
    border-radius: 9999px !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold", Arial, sans-serif !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
    text-decoration: none !important;
    border: 0 !important;
    transition: filter .12s ease, transform .12s ease !important;
    color: var(--jlp-green) !important;
    font-size: var(--font-size-body);
}

    .btn,    
    .btn-pill:hover,
    .rz-button.btn-pill:hover {
        filter: brightness(.98) !important;
        transform: translateY(-1px) !important;
    }

.btn-pill-peach,
.rz-button.btn-pill-peach,
.rz-button.btn-pill-peach:hover,
.rz-button.btn-pill-peach:focus,
.rz-button.btn-pill-peach:active,
.rz-button.btn-pill-peach:visited {
    background: var(--jlp-peach) !important;
    color: var(--jlp-green) !important;
}

.btn-secondary,
.btn-pill-salmon,
.rz-button.btn-pill-salmon,
.rz-button.btn-pill-salmon:hover,
.rz-button.btn-pill-salmon:focus,
.rz-button.btn-pill-salmon:active,
.rz-button.btn-pill-salmon:visited {
    background: var(--jlp-salmon) !important;
    color: var(--jlp-green) !important;
}

.btn-primary,
.btn-pill-mint,
.rz-button.btn-pill-mint,
.rz-button.btn-pill-mint:hover,
.rz-button.btn-pill-mint:focus,
.rz-button.btn-pill-mint:active,
.rz-button.btn-pill-mint:visited {
    background: var(--accent-green) !important;
    color: var(--jlp-green) !important;
}

.btn-pill-white,
.rz-button.btn-pill-white,
.rz-button.btn-pill-white:hover,
.rz-button.btn-pill-white:focus,
.rz-button.btn-pill-white:active,
.rz-button.btn-pill-white:visited {
    background: var(--jlp-offwhite) !important;
    color: var(--jlp-green) !important;
}


a.btn-pill, a.btn-pill:hover, a.btn-pill:focus, a.btn-pill:active, a.btn-pill:visited {
    color: var(--jlp-green) !important;
    text-decoration: none !important;
}

.btn-outline-jlp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    color: var(--jlp-green) !important;
    border: 2px solid var(--jlp-green);
    border-radius: 999px;
    padding: .85rem 1.1rem;
    text-decoration: none;
}

    .btn-outline-jlp:hover {
        background: rgba(15,61,58,.06);
        text-decoration: none;
    }

    .btn-outline-jlp i {
        margin-right: .5rem;
    }

.ab {
    position: relative;
    width: 100%;
    max-width: 1020px;
    aspect-ratio: calc(var(--w,16)/var(--h,9));
    background: var(--bg, none) center/cover no-repeat;
    border-radius: 22px;
    overflow: hidden;
    container-type: inline-size;
    margin: 1.25rem auto 2rem;
}

.ab-img {
    display: block;
    width: 100%;
    height: auto
}

.ov {
    position: absolute;
    top: var(--top);
    left: var(--left, auto);
    right: var(--right, auto);
    width: var(--width, auto);
    transform: translate(var(--tx,0), var(--ty,0));
    color: #fff;
    line-height: 1.35;
    pointer-events: auto;
}

.tx-title {
    font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
    letter-spacing: .04em;
    font-size: calc((var(--fs,40)/var(--w,1920))*100*1cqw);
}

.tx-body {
    font-size: calc((var(--fs,22)/var(--w,1920))*100*1cqw);
}

.ov-list {
    margin: 0;
    padding-left: 1.1em
}

    .ov-list li {
        margin: .25em 0
    }

@supports not (font-size:1cqw) {
    .tx-title {
        font-size: clamp(18px,2.2vw,28px)
    }

    .tx-body {
        font-size: clamp(16px,2vw,22px)
    }
}



.rz-inputtext.jlp-input, .rz-textarea.jlp-textarea {
    background: #fff;
    border: 2px solid rgba(0,0,0,.12);
    border-radius: 12px;
    padding: .75rem 1rem;
    color: #111;
    width: 100%;
}

.rz-textarea.jlp-textarea {
    min-height: 8rem;
}

.jlp-choice.btn-pill {
    border-radius: 9999px !important;
    min-height: 56px !important;
    width: 100% !important;
    border: 2px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
    transition: background .15s,color .15s,border-color .15s,transform .1s;
    text-transform: none !important;
}
    .jlp-choice.btn-pill:hover {
        filter: none !important;
        transform: none !important;
        text-transform: none !important;
    }

    .jlp-choice.btn-pill:not(.rz-state-active):not([aria-pressed="true"]):is(:hover,:focus) {
        background: rgba(255,255,255,.08) !important;
        border-color: #fff !important;
        color: #fff !important;
        text-transform: none !important;
    }

    .jlp-choice.btn-pill.rz-state-active,
    .jlp-choice.btn-pill[aria-pressed="true"],
    .jlp-choice.btn-pill.rz-state-active:is(:hover,:focus,:active),
    .jlp-choice.btn-pill[aria-pressed="true"]:is(:hover,:focus,:active) {
        background: var(--choice-on-bg) !important;
        border-color: var(--choice-on-bg) !important;
        color: var(--choice-on-color) !important;
        text-transform: none !important;
    }

    .jlp-choice.btn-pill .rz-button-text {
        color: inherit !important;
        text-transform: none !important;
    }

    .jlp-choice.btn-pill .rz-ripple,
    .jlp-choice.btn-pill .rz-state-layer {
        display: none !important;
        text-transform: none !important;
    }

    .jlp-choice.btn-pill:focus-visible {
        outline: 3px solid rgba(255,255,255,.35);
        outline-offset: 2px;
        text-transform: none !important;
    }

.jlp-answers {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .jlp-answers > li + li {
        margin-top: .5rem;
    }

.jlp-summary-card {
    background: var(--jlp-peach);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

.jlp-compare-table {
    border-collapse: collapse;
}

    .jlp-compare-table th,
    .jlp-compare-table td {
        padding: 12px 14px;
        vertical-align: top;
    }

    .jlp-compare-table thead tr {
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .jlp-compare-table tbody tr + tr {
        border-top: 1px solid rgba(0,0,0,.06);
    }

.jlp-accordion {
    margin: 0 0 20px 0;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

    .jlp-accordion > summary {
        list-style: none;
        cursor: pointer;
        padding: 14px 18px;
        font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
        color: #0f3d3a;
        background: #eaf3f0;
        outline: none;
    }

        .jlp-accordion > summary::-webkit-details-marker {
            display: none;
        }

        .jlp-accordion > summary::after {
            content: "▾";
            float: right;
            transition: transform .2s ease;
        }

    .jlp-accordion[open] > summary::after {
        transform: rotate(-180deg);
    }

    .jlp-accordion .accordion-body {
        padding: 18px;
        background: #fff;
        color: var(--jlp-green);
    }

.video-grid--portrait {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 900px) {
    .video-grid--portrait {
        grid-template-columns: 1fr;
    }
}

.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-embed--portrait {
    --ratio-w: 9;
    --ratio-h: 16;
    aspect-ratio: var(--ratio-w) / var(--ratio-h);
}

@supports not (aspect-ratio: 1 / 1) {
    .video-embed--portrait::before {
        content: "";
        display: block;
        padding-top: calc(var(--ratio-h,16) / var(--ratio-w,9) * 100%);
    }
}

    .video-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.pdf-embed {
    position: relative;
    width: 100%;
    min-height: 520px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 14px;
}

    .pdf-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.tp-tip {
    background: var(--green-light);
    color: var(--jlp-green);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 8px 0 22px;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
}

@media (max-width:720px) {
    .tp-grid {
        grid-template-columns: 1fr;
    }
}

.tp-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 16px 18px;
}

    .tp-card h4 {
        margin: 0 0 .35rem 0;
        color: var(--jlp-green);
        font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
    }

    .tp-card p {
        margin: 0;
        color: #244;
    }

.hiw-list {
    margin: .25rem 0 1rem;
    padding-left: 0;
    list-style: none;
}

    .hiw-list li {
        position: relative;
        padding-left: 2rem;
        margin: .5rem 0;
        line-height: 1.5;
    }

        .hiw-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700;
            transform: translateY(0);
            color: #0f8f6f; 
        }

.reflect-box {
    background: #eaf3f0; 
    color: #0f3d3a; 
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 8px;
}

    .reflect-box strong {
        font-family: "GillSansNovaforJL-SemiBold","GillSansNovaforJL-Bold",Arial,sans-serif;
    }

.tip-box {
    background: var(--green-light);
    color: var(--jlp-green);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 8px auto 18px;
    max-width: 1100px;
}

.pay-note {
    color: #244;
    margin: 0 auto 18px;
    max-width: 1100px;
}

.tip-card {
    max-width: 1100px;
    margin: 0 auto 18px;
    padding: 14px 16px;
    background: var(--green-light);
    color: var(--jlp-green);
    border-radius: 12px;
    border: 1px solid #cfe3dc;
}

    .tip-card strong {
        font-weight: 700;
    }

    .tip-card .example {
        margin: 10px 0 4px;
        padding: 10px 12px;
        border-radius: 10px;
        background: #fff;
        border: 1px dashed #c9ded7;
        font-style: italic;
    }

.fw700 {
    font-weight: 700;
}

.mt-4 {
    margin-top: 1.5rem;
}

.tk-1-left {
    left: 4%;
    top: 36%;
    width: 32%;
}

.tk-1-right {
    right: 4%;
    top: 36%;
    width: 32%;
    text-align: right;
}

.tk-1-bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: 9%;
    width: 56%;
    text-align: center;
}

.tk-2-line {
    left: var(--x);
    top: var(--y);
    width: var(--w);
    transform: rotate(var(--rot));
}

.tk-2-vert {
    left: var(--x);
    top: var(--y);
    width: var(--w);
    transform: rotate(var(--rot));
    text-align: center;
}

.tk-tips-line {
    left: 48%;
    width: 45%;
    top: var(--top);
}

.tk-note {
    max-width: 1200px;
    margin: .5rem auto 2rem;
    color: #d7efe8;
    opacity: .9;
}

.ab__slot {
    position: absolute;
    color: #ffffff;
    line-height: 1.35;
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

    .ab__slot h2, .ab__slot h3 {
        margin: 0 0 .5rem;
    }

    .ab__slot p {
        margin: 0 0 .6rem;
    }

    .ab__slot ul {
        margin: .25rem 0 0;
        padding-left: 1.1rem;
    }

    .ab__slot li {
        margin: .25rem 0;
    }

.video-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.evp__pattern {
    background: url("../img/Homepage-Desktop-Ameded.svg") no-repeat center center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    background-color: #b7e0cb;
    height: 500px;
}

.evp__pattern2 {
    display: flex;
    background: url("../img/Desktop-Careers.svg") no-repeat center center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    background-color: #b7e0cb;
    height: 500px;
}

.evp__pattern4 {
    display: flex;
    background: url("../img/Desktop-Ambasador.svg") no-repeat center center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    background-color: #b7e0cb;
    height: 500px;
}

.evp__pattern3 {
    display: flex;
    background: url("../img/LogIn-Amended.svg") no-repeat center center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    background-color: #b7e0cb;
    height: 500px;
}

    .evp__pattern3.backend {
        display: flex;
        background: url("../img/LogIn-Amended.svg") no-repeat center center;
        background-size: auto;
        background-size: cover;
        height: auto;
        min-width: 100%;
        width: 100%;
        background-color: #b7e0cb;
        height: 400px;
    }

.evp__logo {
    background: url("../img/Logo-section.svg") no-repeat right center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    height: 400px;
}


.evp__logo2 {
    background: url("../img/Logo-section2.svg") no-repeat right center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    height: 400px;
}

.evp__aboutProgramme {
    background: url("../img/AboutMe.svg") no-repeat center center;
    background-size: auto;
    background-size: cover;
    height: auto;
    min-width: 100%;
    width: 100%;
    height: 400px;
}

@media (max-width: 900px) {
    .evp__logo2 {
        background: url("../img/Logo-section2.svg") no-repeat right center;
        background-size: auto;
        background-size: cover;
        height: auto;
        min-width: 100%;
        width: 100%;
        height: 300px
    }
}

@media (max-width: 768px) {
    .nav-brand.logo, .navbar-dark img {
        width: 22rem;
    }
}

@media (max-width: 650px) {
    .evp__logo2 {
        background: url("../img/Logo-section2.svg") no-repeat right center;
        background-size: auto;
        background-size: cover;
        height: auto;
        min-width: 100%;
        width: 100%;
        height: 200px
    }
}

@media (max-width: 550px) {
    .evp__pattern3 {
        background: url("../img/LogIn-Amended.svg") no-repeat right right;
    }

    .evp__logo2 {
        background: url("../img/Logo-section2.svg") no-repeat center center;
        background-size: auto;
        background-size: cover;
        height: auto;
        min-width: 100%;
        width: 100%;
    }

    .evp__logo {
        background: url("../img/Logo-section.svg") no-repeat center center;
        background-size: auto;
        background-size: cover;
        height: auto;
        min-width: 100%;
        width: 100%;
    }

    .evp__pattern, .evp__pattern1, .evp__pattern2, .evp__pattern3, .evp__pattern4 {
        height: 337px;
    }
}

.rounded-bottom-20 {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.rounded-top-20 {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.rounded-20 {
    border-radius: 20px;
}

.material-symbols-outlined {
    font-size: 32px !important;
}

.card-wrapper {
    position: relative;
    min-height: 100%;
}

button:focus {
    outline: none !important;
}