/* =========================================================
   OLI TRAINING ACADEMY
   HOMEPAGE-ONLY STYLESHEET
   Orange / Blue / Black / White
   Fully scoped to .home-page
========================================================= */


/* =========================================================
   HOMEPAGE VARIABLES
========================================================= */

.home-page {
    --home-orange: #f4a000;
    --home-orange-dark: #d88900;

    --home-blue: #075b9f;
    --home-blue-dark: #073b68;

    --home-navy: #082d4c;

    --home-black: #151515;
    --home-white: #ffffff;

    --home-light: #f5f8fa;
    --home-border: #e4e9ed;

    --home-text: #27333d;
    --home-muted: #687580;
}


/* =========================================================
   RESET
========================================================= */

.home-page {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: var(--home-text);

    overflow-x: hidden;

    font-family: Arial, Helvetica, sans-serif;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page img {
    max-width: 100%;
}

.home-page a {
    text-decoration: none;
}

.home-page button {
    font-family: inherit;
}

.home-page .home-container {
    width: min(1160px, 90%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.home-page .home-header {
    position: relative;
    z-index: 999;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #edf0f2;
}

.home-page .home-header-inner {
    width: min(1220px, 92%);
    min-height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 25px;
}


/* =========================================================
   HEADER BRAND
========================================================= */

.home-page .home-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.home-page .home-brand-logo {
    width: 44px;
    height: 44px;

    overflow: hidden;

    border-radius: 7px;

    flex-shrink: 0;
}

.home-page .home-brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.home-page .home-brand-text {
    display: flex;
    flex-direction: column;
}

.home-page .home-brand-text strong {
    color: var(--home-navy);

    font-size: 14px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.2px;
}

.home-page .home-brand-text span {
    margin-top: 3px;

    color: var(--home-orange-dark);

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.home-page .home-nav {
    display: flex;
    align-items: center;

    margin-left: auto;

    gap: 3px;
}

.home-page .home-nav a {
    position: relative;

    padding: 30px 10px;

    color: #3b454e;

    font-size: 11px;
    font-weight: 650;

    transition: 0.25s ease;
}

.home-page .home-nav a::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 21px;

    height: 2px;

    background: var(--home-orange);

    transform: scaleX(0);

    transition: 0.25s ease;
}

.home-page .home-nav a:hover,
.home-page .home-nav a.active {
    color: var(--home-blue);
}

.home-page .home-nav a:hover::after,
.home-page .home-nav a.active::after {
    transform: scaleX(1);
}


/* =========================================================
   APPLY BUTTON
========================================================= */

.home-page .home-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 16px;

    background: var(--home-orange);
    color: #151515;

    border-radius: 5px;

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.25s ease;
}

.home-page .home-apply:hover {
    background: var(--home-blue);
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.home-page .home-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    margin-left: auto;

    border: 0;
    border-radius: 5px;

    background: var(--home-blue);
    color: #ffffff;

    cursor: pointer;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.home-page .home-mobile-nav {
    display: none;
}


/* =========================================================
   HERO
   50% CONTENT + 50% IMAGE
========================================================= */

.home-page .hero-section {
    width: 100%;
    min-height: 620px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.home-page .hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 7vw;
}

.home-page .hero-tag {
    display: inline-block;

    width: fit-content;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: rgba(244, 160, 0, 0.12);

    border-left: 4px solid var(--home-orange);

    color: var(--home-orange-dark);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.home-page .hero-content h1 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #111111;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.home-page .hero-content h1 span {
    display: block;

    color: var(--home-orange);
}

.home-page .hero-content > p {
    max-width: 620px;

    margin: 0 0 32px;

    color: #555555;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.home-page .hero-buttons {
    display: flex;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.home-page .hero-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 25px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* PRIMARY */

.home-page .primary-btn {
    background: var(--home-orange);

    color: #ffffff;
}

.home-page .primary-btn:hover {
    background: var(--home-orange-dark);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(244, 160, 0, 0.25);
}


/* SECONDARY */

.home-page .secondary-btn {
    background: #111111;

    color: #ffffff;
}

.home-page .secondary-btn:hover {
    background: var(--home-blue);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   HERO IMAGE
   IMPORTANT:
   image44.jpeg is portrait.
   CONTAIN keeps the complete image visible.
========================================================= */

.home-page .hero-image {
    position: relative;

    width: 100%;
    min-height: 620px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef3f6;
}

.home-page .hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #eef3f6;

    transition: transform 0.7s ease;
}

.home-page .hero-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   HERO IMAGE OVERLAY
========================================================= */

.home-page .hero-image-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7, 59, 104, 0.04),
            transparent 40%
        );
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .home-page .hero-section {
        min-height: 680px;
    }

    .home-page .hero-content {
        padding-left: 9vw;
        padding-right: 5vw;
    }

    .home-page .hero-image {
        min-height: 680px;
    }
}


/* =========================================================
   SECTION COMMON
========================================================= */

.home-page .home-section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--home-orange-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.home-page .home-welcome-heading h2,
.home-page .home-heading-row h2,
.home-page .home-training-content h2 {
    margin: 0;

    color: var(--home-navy);

    font-size: clamp(31px, 4vw, 43px);

    line-height: 1.15;

    letter-spacing: -0.8px;
}

.home-page .home-welcome-heading h2 span,
.home-page .home-heading-row h2 span,
.home-page .home-training-content h2 span {
    color: var(--home-blue);
}


/* =========================================================
   WELCOME
========================================================= */

.home-page .home-welcome {
    padding: 95px 0 100px;

    background: #ffffff;
}

.home-page .home-welcome-heading {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 48px;
}

.home-page .home-welcome-heading > p {
    max-width: 580px;

    margin: 0;

    color: var(--home-muted);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   WELCOME CARDS
========================================================= */

.home-page .home-welcome-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
}

.home-page .home-welcome-card {
    display: grid;

    grid-template-columns: auto 1fr;

    gap: 18px;

    padding: 35px 30px;
}

.home-page .home-welcome-card + .home-welcome-card {
    border-left: 1px solid var(--home-border);
}

.home-page .home-welcome-highlight {
    background: #f6f9fb;
}

.home-page .home-card-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    background: rgba(7, 91, 159, 0.09);

    color: var(--home-blue);

    border-radius: 6px;

    font-size: 19px;
}

.home-page .home-welcome-highlight .home-card-icon {
    background: rgba(244, 160, 0, 0.13);

    color: var(--home-orange-dark);
}

.home-page .home-welcome-card h3 {
    margin: 1px 0 7px;

    color: var(--home-navy);

    font-size: 16px;
}

.home-page .home-welcome-card p {
    margin: 0;

    color: var(--home-muted);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   COURSES
========================================================= */

.home-page .home-courses {
    padding: 95px 0 105px;

    background: var(--home-light);
}

.home-page .home-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 43px;
}

.home-page .home-heading-row p {
    margin: 12px 0 0;

    color: var(--home-muted);

    font-size: 12px;
}

.home-page .home-view-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--home-blue);

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.2s ease;
}

.home-page .home-view-link:hover {
    color: var(--home-orange-dark);

    gap: 12px;
}


/* =========================================================
   COURSE GRID
========================================================= */

.home-page .home-course-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.home-page .home-course {
    position: relative;

    min-height: 275px;

    padding: 29px;

    background: #ffffff;

    border: 1px solid var(--home-border);

    overflow: hidden;

    transition: 0.3s ease;
}

.home-page .home-course:hover {
    transform: translateY(-5px);

    border-color: rgba(7, 91, 159, 0.25);

    box-shadow:
        0 18px 35px rgba(7, 59, 104, 0.09);
}

.home-page .home-course-number {
    position: absolute;

    right: 20px;
    top: 12px;

    color: #edf1f4;

    font-size: 39px;
    font-weight: 900;
}

.home-page .home-course-icon {
    position: relative;
    z-index: 2;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    background: var(--home-blue);

    color: #ffffff;

    border-radius: 6px;

    font-size: 18px;
}

.home-page .home-course-icon.orange {
    background: var(--home-orange);

    color: #151515;
}

.home-page .home-course h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 9px;

    color: var(--home-navy);

    font-size: 17px;
}

.home-page .home-course p {
    position: relative;
    z-index: 2;

    margin: 0 0 18px;

    color: var(--home-muted);

    font-size: 11px;

    line-height: 1.75;
}

.home-page .home-course-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--home-blue);

    font-size: 10px;
    font-weight: 800;

    transition: 0.2s ease;
}

.home-page .home-course:hover .home-course-link {
    color: var(--home-orange-dark);

    gap: 11px;
}


/* =========================================================
   WHY OLI
========================================================= */

.home-page .home-why {
    padding: 100px 0;

    background: var(--home-navy);
}

.home-page .home-why-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.home-page .home-why-intro .home-section-label {
    color: var(--home-orange);
}

.home-page .home-why-intro h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.13;
}

.home-page .home-why-intro h2 span {
    display: block;

    color: var(--home-orange);
}

.home-page .home-why-intro > p {
    max-width: 400px;

    margin: 19px 0 27px;

    color: #bac8d3;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   WHY ITEMS
========================================================= */

.home-page .home-why-items {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px;
}

.home-page .home-why-item {
    display: grid;

    grid-template-columns: auto auto 1fr;

    gap: 11px;

    padding: 22px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.25s ease;
}

.home-page .home-why-item:hover {
    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(244, 160, 0, 0.35);
}

.home-page .home-why-number {
    color: var(--home-orange);

    font-size: 9px;
    font-weight: 800;
}

.home-page .home-why-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    background: rgba(244, 160, 0, 0.12);

    color: var(--home-orange);

    border-radius: 5px;
}

.home-page .home-why-item h3 {
    margin: 1px 0 5px;

    color: #ffffff;

    font-size: 12px;
}

.home-page .home-why-item p {
    margin: 0;

    color: #9fb0bd;

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   TRAINING
========================================================= */

.home-page .home-training {
    padding: 110px 0;

    background: #ffffff;
}

.home-page .home-training-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 75px;

    align-items: center;
}


/* =========================================================
   TRAINING IMAGE
========================================================= */

.home-page .home-training-image {
    position: relative;

    height: 445px;

    padding: 9px;

    background: #f1f4f6;

    box-shadow:
        17px 17px 0 rgba(244, 160, 0, 0.13);
}

.home-page .home-training-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.home-page .home-image-tag {
    position: absolute;

    left: 24px;
    bottom: 23px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    background: #ffffff;

    color: var(--home-navy);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

    font-size: 10px;
    font-weight: 800;
}

.home-page .home-image-tag i {
    color: var(--home-orange-dark);
}


/* =========================================================
   TRAINING CONTENT
========================================================= */

.home-page .home-training-content h2 {
    max-width: 520px;
}

.home-page .home-training-content > p {
    max-width: 550px;

    margin: 17px 0 0;

    color: var(--home-muted);

    font-size: 12px;

    line-height: 1.9;
}

.home-page .home-training-content ul {
    display: grid;

    gap: 9px;

    margin: 23px 0 28px;

    padding: 0;

    list-style: none;
}

.home-page .home-training-content li {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #35434e;

    font-size: 11px;
    font-weight: 600;
}

.home-page .home-training-content li i {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    background: rgba(244, 160, 0, 0.13);

    color: var(--home-orange-dark);

    border-radius: 50%;

    font-size: 8px;
}

.home-page .home-button-blue {
    background: var(--home-blue);

    color: #ffffff;
}

.home-page .home-button-blue:hover {
    background: var(--home-orange);

    color: #151515;
}


/* =========================================================
   UPDATES
========================================================= */

.home-page .home-updates {
    padding: 95px 0 105px;

    background: var(--home-light);
}

.home-page .home-update-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.home-page .home-update {
    min-height: 290px;

    padding: 29px;

    background: #ffffff;

    border: 1px solid var(--home-border);

    transition: 0.3s ease;
}

.home-page .home-update:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 35px rgba(7, 59, 104, 0.09);
}

.home-page .home-update.featured {
    border-top: 4px solid var(--home-orange);
}

.home-page .home-update-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    background: rgba(7, 91, 159, 0.09);

    color: var(--home-blue);

    border-radius: 5px;
}

.home-page .home-update.featured .home-update-icon {
    background: rgba(244, 160, 0, 0.13);

    color: var(--home-orange-dark);
}

.home-page .home-update-label {
    display: block;

    margin-bottom: 9px;

    color: var(--home-blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.home-page .home-update h3 {
    margin: 0 0 10px;

    color: var(--home-navy);

    font-size: 17px;

    line-height: 1.35;
}

.home-page .home-update p {
    margin: 0 0 18px;

    color: var(--home-muted);

    font-size: 11px;

    line-height: 1.8;
}

.home-page .home-update > a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--home-blue);

    font-size: 10px;
    font-weight: 800;

    transition: 0.2s ease;
}

.home-page .home-update > a:hover {
    color: var(--home-orange-dark);

    gap: 11px;
}


/* =========================================================
   CTA
========================================================= */

.home-page .home-cta {
    position: relative;

    overflow: hidden;

    padding: 85px 0;

    background:
        linear-gradient(
            120deg,
            var(--home-blue-dark),
            var(--home-navy)
        );
}

.home-page .home-cta-circle {
    position: absolute;

    width: 370px;
    height: 370px;

    right: -170px;
    top: -190px;

    border: 65px solid rgba(244, 160, 0, 0.09);

    border-radius: 50%;
}

.home-page .home-cta-content {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 auto;

    text-align: center;
}

.home-page .home-cta-content .home-section-label {
    color: var(--home-orange);
}

.home-page .home-cta-content h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 47px);

    line-height: 1.15;
}

.home-page .home-cta-content h2 strong {
    color: var(--home-orange);
}

.home-page .home-cta-content p {
    max-width: 620px;

    margin: 0 auto 27px;

    color: #bdccd7;

    font-size: 12px;

    line-height: 1.8;
}

.home-page .home-cta-buttons {
    display: flex;

    justify-content: center;

    gap: 12px;
}

.home-page .home-cta-primary,
.home-page .home-cta-secondary {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 5px;

    font-size: 10px;
    font-weight: 800;

    transition: 0.25s ease;
}

.home-page .home-cta-primary {
    background: var(--home-orange);

    color: #151515;
}

.home-page .home-cta-primary:hover {
    background: #ffffff;
}

.home-page .home-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;
}

.home-page .home-cta-secondary:hover {
    background: #ffffff;

    color: var(--home-blue);
}


/* =========================================================
   FOOTER
========================================================= */

.home-page .home-footer {
    padding: 62px 0 0;

    background: #061f35;

    color: #ffffff;
}

.home-page .home-footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr;

    gap: 50px;

    padding-bottom: 50px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.home-page .home-footer-brand {
    max-width: 320px;
}

.home-page .home-footer-logo {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.home-page .home-footer-logo img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    border-radius: 6px;
}

.home-page .home-footer-logo strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}

.home-page .home-footer-logo span {
    display: block;

    margin-top: 2px;

    color: var(--home-orange);

    font-size: 7px;
}

.home-page .home-footer-brand > p {
    margin: 0;

    color: #98aeba;

    font-size: 10px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.home-page .home-footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.home-page .home-footer-column h3 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: 11px;
}

.home-page .home-footer-column a {
    margin-bottom: 8px;

    color: #98aeba;

    font-size: 9px;

    transition: 0.2s ease;
}

.home-page .home-footer-column a:hover {
    color: var(--home-orange);

    transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.home-page .home-footer-bottom {
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #728996;

    font-size: 8px;
}


/* =========================================================
   NAVIGATION — ACTIVE STATE
========================================================= */

.home-page .home-header {
    font-family: Arial, Helvetica, sans-serif;
}

.home-page .home-nav a {
    text-decoration: none;
}

.home-page .home-nav a.active {
    color: var(--home-blue);
}

.home-page .home-nav a.active::after {
    background: var(--home-orange);
}

.home-page .home-mobile-nav a {
    text-decoration: none;
}

.home-page .home-mobile-nav a.active {
    color: var(--home-blue);

    border-left-color: var(--home-orange);
}


/* =========================================================
   TABLET — 1050PX
========================================================= */

@media (max-width: 1050px) {

    .home-page .home-nav a {
        padding-left: 7px;
        padding-right: 7px;

        font-size: 10px;
    }

    .home-page .home-nav a::after {
        left: 7px;
        right: 7px;
    }

    .home-page .hero-content {
        padding-left: 45px;
        padding-right: 35px;
    }

    .home-page .hero-content h1 {
        font-size: 53px;
    }

    .home-page .home-why-grid {
        gap: 50px;
    }

    .home-page .home-training-grid {
        gap: 50px;
    }
}


/* =========================================================
   TABLET — 900PX
========================================================= */

@media (max-width: 900px) {

    /* HEADER */

    .home-page .home-nav,
    .home-page .home-apply {
        display: none;
    }

    .home-page .home-menu-button {
        display: grid;

        place-items: center;
    }


    /* MOBILE NAV */

    .home-page .home-mobile-nav {
        display: flex;

        flex-direction: column;

        max-height: 0;

        overflow: hidden;

        background: #ffffff;

        border-top: 1px solid transparent;

        transition:
            max-height 0.35s ease,
            border-color 0.35s ease;
    }

    .home-page .home-mobile-nav.show {
        max-height: 500px;

        border-top-color: #edf0f2;
    }

    .home-page .home-mobile-nav a {
        padding: 13px 5%;

        color: #36414a;

        border-bottom: 1px solid #edf0f2;

        font-size: 12px;
        font-weight: 650;
    }

    .home-page .home-mobile-nav a.active {
        color: var(--home-blue);

        border-left: 3px solid var(--home-orange);
    }

    .home-page .home-mobile-nav .mobile-apply {
        margin: 14px 5%;

        background: var(--home-orange);

        color: #151515;

        border: 0;

        text-align: center;
    }


    /* HERO */

    .home-page .hero-section {
        min-height: 560px;
    }

    .home-page .hero-content {
        padding: 50px 35px;
    }

    .home-page .hero-content h1 {
        font-size: 48px;
    }

    .home-page .hero-content > p {
        font-size: 15px;

        line-height: 1.7;
    }

    .home-page .hero-image {
        min-height: 560px;
    }


    /* WELCOME */

    .home-page .home-welcome-heading {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .home-page .home-welcome-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-welcome-card + .home-welcome-card {
        border-left: 0;

        border-top: 1px solid var(--home-border);
    }


    /* COURSES */

    .home-page .home-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* WHY */

    .home-page .home-why-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* TRAINING */

    .home-page .home-training-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .home-page .home-training-image {
        max-width: 600px;
    }


    /* UPDATES */

    .home-page .home-update-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .home-page .home-footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}


/* =========================================================
   MOBILE — 768PX
========================================================= */

@media (max-width: 768px) {

    /* HERO */

    .home-page .hero-section {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }

    .home-page .hero-content {
        order: 1;

        padding: 55px 25px 45px;

        text-align: center;

        align-items: center;
    }

    .home-page .hero-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .hero-content h1 {
        font-size: 42px;

        line-height: 1.1;
    }

    .home-page .hero-content > p {
        font-size: 15px;

        line-height: 1.7;
    }

    .home-page .hero-buttons {
        justify-content: center;
    }


    /* IMAGE */

    .home-page .hero-image {
        order: 2;

        width: 100%;

        height: 500px;

        min-height: 500px;
    }

    .home-page .hero-image img {
        object-fit: contain;

        object-position: center;
    }


    /* TRAINING */

    .home-page .home-training-image {
        height: 380px;
    }
}


/* =========================================================
   MOBILE — 650PX
========================================================= */

@media (max-width: 650px) {

    .home-page .home-container {
        width: 90%;
    }

    .home-page .home-header-inner {
        width: 92%;
    }


    /* BRAND */

    .home-page .home-brand-logo {
        width: 39px;
        height: 39px;
    }

    .home-page .home-brand-text strong {
        font-size: 11px;
    }

    .home-page .home-brand-text span {
        font-size: 7px;
    }


    /* HERO */

    .home-page .hero-content {
        padding: 50px 25px 40px;
    }

    .home-page .hero-content h1 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .home-page .hero-content > p {
        font-size: 13px;
    }

    .home-page .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;

        max-width: 290px;
    }

    .home-page .hero-btn {
        width: 100%;
    }

    .home-page .hero-image {
        height: 480px;

        min-height: 480px;
    }


    /* SECTIONS */

    .home-page .home-welcome,
    .home-page .home-courses,
    .home-page .home-why,
    .home-page .home-training,
    .home-page .home-updates {
        padding: 75px 0;
    }

    .home-page .home-welcome-heading h2,
    .home-page .home-heading-row h2,
    .home-page .home-training-content h2 {
        font-size: 31px;
    }


    /* HEADING */

    .home-page .home-heading-row {
        display: block;
    }

    .home-page .home-view-link {
        margin-top: 18px;
    }


    /* COURSES */

    .home-page .home-course-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-course {
        min-height: 255px;
    }


    /* WHY */

    .home-page .home-why-items {
        grid-template-columns: 1fr;
    }


    /* TRAINING */

    .home-page .home-training-image {
        height: 340px;

        box-shadow:
            10px 10px 0 rgba(244, 160, 0, 0.13);
    }

    .home-page .home-image-tag {
        left: 17px;
        bottom: 17px;
    }


    /* CTA */

    .home-page .home-cta {
        padding: 70px 0;
    }

    .home-page .home-cta-content h2 {
        font-size: 31px;
    }

    .home-page .home-cta-buttons {
        flex-direction: column;

        max-width: 280px;

        margin: 0 auto;
    }

    .home-page .home-cta-primary,
    .home-page .home-cta-secondary {
        width: 100%;
    }


    /* FOOTER */

    .home-page .home-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .home-page .home-footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }
}


/* =========================================================
   SMALL PHONES — 450PX
========================================================= */

@media (max-width: 450px) {

    .home-page .home-brand-text strong {
        font-size: 9px;
    }

    .home-page .home-brand-text span {
        font-size: 6px;
    }

    .home-page .home-brand-logo {
        width: 36px;
        height: 36px;
    }

    .home-page .home-menu-button {
        width: 37px;
        height: 37px;
    }


    /* HERO */

    .home-page .hero-content {
        padding: 45px 20px 35px;
    }

    .home-page .hero-content h1 {
        font-size: 34px;
    }

    .home-page .hero-content > p {
        font-size: 13px;
    }

    .home-page .hero-image {
        height: 450px;

        min-height: 450px;
    }


    /* TRAINING */

    .home-page .home-training-image {
        height: 290px;
    }


    /* FOOTER */

    .home-page .home-footer-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-footer-bottom {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        padding: 18px 0;
    }
}


/* =========================================================
   SMOOTH PAGE LOADER
========================================================= */

#oliPageLoader {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    opacity: 1;

    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

#oliPageLoader.loader-hidden {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}

.home-page .oli-loader-content {
    text-align: center;
}

.home-page .oli-loader-logo {
    width: 150px;
    height: 150px;

    object-fit: contain;

    animation:
        oliLogoSpinZoom
        2.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;

    filter:
        drop-shadow(
            0 10px 25px rgba(0, 0, 0, 0.15)
        );
}


/* =========================================================
   LOADER ANIMATION
========================================================= */

@keyframes oliLogoSpinZoom {

    0% {
        transform:
            rotateY(0deg)
            scale(1.35);

        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        transform:
            rotateY(180deg)
            scale(1.15);
    }

    75% {
        transform:
            rotateY(300deg)
            scale(0.95);
    }

    100% {
        transform:
            rotateY(360deg)
            scale(0.82);

        opacity: 1;
    }
}


/* =========================================================
   LOADER TEXT
========================================================= */

.home-page .oli-loader-content h2 {
    margin: 20px 0 6px;

    color: #111111;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 1.5px;

    opacity: 0;

    animation:
        oliLoaderText
        0.8s
        ease
        0.8s
        forwards;
}

.home-page .oli-loader-content p {
    margin: 0;

    color: #777777;

    font-size: 14px;

    letter-spacing: 0.8px;

    opacity: 0;

    animation:
        oliLoaderText
        0.8s
        ease
        1s
        forwards;
}

@keyframes oliLoaderText {

    from {
        opacity: 0;

        transform:
            translateY(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   LOADER MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-page .oli-loader-logo {
        width: 115px;
        height: 115px;
    }

    .home-page .oli-loader-content h2 {
        font-size: 17px;
    }

    .home-page .oli-loader-content p {
        font-size: 13px;
    }
}