/* =============================================================================
   GLOBAL CSS STRUCTURE - IMPROVED VERSION
   ============================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*
        This font software is the property of Commercial Type.
        You may not modify the font software, use it on another website, or install it on a computer.
        License information is available at http://commercialtype.com/eula
        For more information please visit Commercial Type at http://commercialtype.com or email us at info[at]commercialtype.com
        Copyright (C) 2024 Schwartzco Inc.
        License 2406-KVLLRV      
*/

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/Canela-ThinItalic-Web.woff2') format('woff2'), url('/assets/fonts/Canela-ThinItalic-Web.woff') format('woff');
    font-weight: 100;
    font-style: italic;
}

.Canela-ThinItalic-Web {
    font-family: 'Canela';
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Canela';
    src: url('/assets/fonts/Canela-Thin-Web.woff2') format('woff2'), url('/assets/fonts/Canela-Thin-Web.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

.Canela-Thin-Web {
    font-family: 'Canela';
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Hanken Grotesk';
    font-style: normal;
    font-weight: normal;
    src: url('/assets/fonts/HankenGrotesk-Regular.ttf') format('woff2'), url('HankenGrotesk-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Hanken Grotesk Light';
    font-style: normal;
    font-weight: normal;
    src: url('/assets/fonts/HankenGrotesk-Light.ttf'), url('HankenGrotesk-Light.woff') format('woff');
}


@font-face {
    font-family: 'Hanken Grotesk Medium';
    font-style: normal;
    font-weight: normal;
    src: url('/assets/fonts/HankenGrotesk-Medium.ttf'), url('HankenGrotesk-Medium.woff') format('woff');
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}

body {
    font-family: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--color-black);
    background: var(--color-white);
    line-height: 24px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
}

/* ---- Sticky footer: put page content in <main> ---- */
main {
    flex: 1;
    display: block;
    overflow-x: clip
}

/* =============================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================================= */
:root {
    /* Breakpoints as CSS variables for consistency */
    --bp-xs: 320px;
    --bp-sm: 768px;
    --bp-md: 1020px;
    --bp-lg: 1272px;
    /* Spacing Scale */
    --space-xs: 0.25rem; /* 4px */
    --space-sm: 0.5rem; /* 8px */
    --space-md: 1rem; /* 16px */
    --space-lg: 1.5rem; /* 24px */
    --space-xl: 2rem; /* 32px */
    --space-2xl: 3rem; /* 48px */
    --space-3xl: 4rem; /* 64px */
    /* Typography Scale */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-lg: 1.125rem; /* 18px */
    --text-xl: 1.25rem; /* 20px */
    --text-2xl: 1.5rem; /* 24px */
    --text-3xl: 1.875rem; /* 30px */
    --text-4xl: 2.25rem; /* 36px */
    /* blue Spectrum */
    --color-deep-blue: #273a8a;
    --color-blue-52619C: #52619c;
    --color-blue-8993BE: #8993be;
    --color-blue-E1E2EC: #e1e2ec;
    /* purple Spectrum */
    --color-deep-purple: #332680;
    --color-light-purple: #8059d7;
    --color-purple-9179E0: #9179e0;
    --color-purple-B5A2E9: #b5a2e9;
    --color-purple-E8E6F5: #e8e6f5;
    /* turquoise Spectrum  */
    --color-turquoise: #02a288;
    --color-light-turquoise-1: #52d7b4;
    --color-turquoise-7CDFC3: #7cdfc3;
    --color-turquoise-A6E8D6: #a6e8d6;
    --color-turquoise-E8F4F0: #e8f4f0;
    --color-light-turquoise-2: #89e4cb;
    --color-light-A2E9D5: #a2e9d5;
    --color-light-C1EEE0: #c1eee0;
    --color-light-EBF5F2: #ebf5f2;
    /* white Spectrum */
    --color-white: #ffffff;
    --color-off-white-1: #d4ede7;
    --color-off-white-DCEEEA: #dceeea;
    --color-off-white-2: #e4eeec;
    --color-off-white-EDF2F1: #edf2f1;
    /* black Spectrum */
    --color-black: #242424;
    --color-black-505051: #505051;
    --color-black-8A8B8B: #8a8b8b;
    --color-black-CDCCCC: #cdcccc;
    /* violet Spectrum */
    --color-violet: #9980a5;
    --color-violet-AE98B7: #ae98b7;
    --color-violet-C8BCCF: #c8bccf;
    --color-violet-E6E2E9: #e6e2e9;
    /* salmon Spectrum*/
    --color-salmon: #ff7a80;
    --color-salmon-FF9094: #ff9094;
    --color-salmon-FFB7B9: #ffb7b9;
    --color-salmon-FFE0E1: #ffe0e1;
    /* lightblue Spectrum */
    --color-light-blue: #80def5;
    --color-light-blue-9BE5F8: #9be5f8;
    --color-light-blue-c2eefb: #c2eefb;
    --color-light-blue-EDF9FF: #edf9ff;
    /* green Spectrum */
    --color-green: #45a277;
    --color-green-6FB68D: #6fb68d;
    --color-green-9ECDB4: #9ecdb4;
    --color-green-D5E9DE: #d5e9de;
    /* Specialty Colors */
    --color-grey: #767676;
    --color-497EA2: #497ea2;
    --color-6E93B4: #6e93b4;
    --color-9FB9CD: #9fb9cd;
    --color-D5DFE8: #d5dfe8;
    --color-grey-border: #d9d9d9;
    --color-grey-border-secondary: #ffffff33;
    /* Border Radius */
    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem; /* 8px */
    --radius-lg: 0.75rem; /* 12px */
    --radius-xl: 1rem; /* 16px */
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* =============================================================================
   GRID SYSTEM
   ============================================================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 var(--space-xl);
}

/* Tablet: 768px - 1019px */
@media (min-width: 767.9px) {
    .grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* Desktop: 1020px - 1271px */
@media (min-width: 1019.9px) {
    .grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

/* =============================================================================
   RESPONSIVE COLUMN CLASSES
   ============================================================================= */
/* Base spans (mobile-first) */
.col-span-1 {
    grid-column: span 1;
}

.col-span-2 {
    grid-column: span 2;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-5 {
    grid-column: span 4;
}

.col-span-6 {
    grid-column: span 4;
}

/* Tablet adjustments */
@media (min-width: 768px) {
    .col-span-5 {
        grid-column: span 5;
    }

    .col-span-6 {
        grid-column: span 6;
    }

    .col-span-7 {
        grid-column: span 7;
    }

    .col-span-8 {
        grid-column: span 8;
    }
}

/* Larger spans responsive behavior */
.col-span-7,
.col-span-8,
.col-span-9,
.col-span-10,
.col-span-11,
.col-span-12 {
    grid-column: span 4; /* Full width on mobile */
}

@media (min-width: 768px) {
    .col-span-7,
    .col-span-8 {
        grid-column: span 8;
    }

    .col-span-9,
    .col-span-10,
    .col-span-11,
    .col-span-12 {
        grid-column: span 8;
    }
}

@media (min-width: 1020px) {
    .col-span-7 {
        grid-column: span 7;
    }

    .col-span-8 {
        grid-column: span 8;
    }

    .col-span-9 {
        grid-column: span 9;
    }

    .col-span-10 {
        grid-column: span 10;
    }

    .col-span-11 {
        grid-column: span 11;
    }

    .col-span-12 {
        grid-column: span 12;
    }
}

/* =============================================================================
   GRID POSITIONING CLASSES
   ============================================================================= */
/* Column Start Classes */
.col-start-1 {
    grid-column-start: 1;
}

.col-start-2 {
    grid-column-start: 2;
}

.col-start-3 {
    grid-column-start: 3;
}

.col-start-4 {
    grid-column-start: 4;
}

.col-start-5 {
    grid-column-start: 5;
}

.col-start-6 {
    grid-column-start: 6;
}

.col-start-7 {
    grid-column-start: 7;
}

.col-start-8 {
    grid-column-start: 8;
}

.col-start-9 {
    grid-column-start: 9;
}

.col-start-10 {
    grid-column-start: 10;
}

.col-start-11 {
    grid-column-start: 11;
}

.col-start-12 {
    grid-column-start: 12;
}

.col-start-13 {
    grid-column-start: 13;
}

.col-start-auto {
    grid-column-start: auto;
}

/* Column End Classes */
.col-end-1 {
    grid-column-end: 1;
}

.col-end-2 {
    grid-column-end: 2;
}

.col-end-3 {
    grid-column-end: 3;
}

.col-end-4 {
    grid-column-end: 4;
}

.col-end-5 {
    grid-column-end: 5;
}

.col-end-6 {
    grid-column-end: 6;
}

.col-end-7 {
    grid-column-end: 7;
}

.col-end-8 {
    grid-column-end: 8;
}

.col-end-9 {
    grid-column-end: 9;
}

.col-end-10 {
    grid-column-end: 10;
}

.col-end-11 {
    grid-column-end: 11;
}

.col-end-12 {
    grid-column-end: 12;
}

.col-end-13 {
    grid-column-end: 13;
}

.col-end-auto {
    grid-column-end: auto;
}

/* =============================================================================
   LAYOUT COMPONENTS
   ============================================================================= */
.container--xxl {
    max-width: 1680px;
    margin: 0 auto;
}

/* Responsive horizontal margins */
.mx-responsive {
    margin: 0 var(--space-md);
}

.px-responsive {
    padding-inline: var(--space-lg);
    /*    padding-right: var(--space-md);*/
}

@media screen and (min-width: 768px) {
    .mx-responsive {
        margin: 0 var(--space-3xl);
    }

    .px-responsive {
        padding-left: var(--space-3xl);
        padding-right: var(--space-3xl);
    }
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
/* Typography utilities */
.text-xs {
    font-size: var(--text-xs);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-base {
    font-size: var(--text-base);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

.text-2xl {
    font-size: var(--text-2xl);
}

.text-3xl {
    font-size: var(--text-3xl);
}

.text-4xl {
    font-size: var(--text-4xl);
}

/* Spacing utilities */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: var(--space-xs);
}

.p-2 {
    padding: var(--space-sm);
}

.p-3 {
    padding: var(--space-md);
}

.p-4 {
    padding: var(--space-lg);
}

.p-5 {
    padding: var(--space-xl);
}

.p-6 {
    padding: var(--space-2xl);
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: var(--space-xs);
}

.m-2 {
    margin: var(--space-sm);
}

.m-3 {
    margin: var(--space-md);
}

.m-4 {
    margin: var(--space-lg);
}

.m-5 {
    margin: var(--space-xl);
}

.m-6 {
    margin: var(--space-2xl);
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

/* Display utilities */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

/* Border radius utilities */
.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

a {
    text-decoration: none
}

b, strong {
    font-weight: 600;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a:not(button,.primary__btn,.primary-btn,footer,.sidebar-menu-item a,.level-title,.navbar a,.sm__primary__navbar__level0 a,.white__btn,.notificationbanner a,.breadcrumb-item a,.op__nav-link) {
    color: var(--color-black, #242424);
    font: 300 18px/27px "Hanken Grotesk", sans-serif;
    text-decoration: underline solid 1px;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

a:not(button,.primary__btn,primary-btn,.white__btn,.breadcrumb-item a,.secondary__navbar a):hover {
    text-decoration: none;
}

a:not(button,.primary__btn,primary-btn,.white__btn,.breadcrumb-item a,.primary__navbar a,.op__nav-link,.menu-item-link):focus-visible {
    outline: 1px solid var(--color-black);
    border-radius: 4px;
    outline-offset: 2px;
}

header a:not(.secondary__navbar a) {
    text-decoration: none !important;
}
/*
    Styling For Unordered List And Ordered List
*/
ul, ol {
    color: var(--Black, #242424);
    font: 300 18px/150% "Hanken Grotesk", sans-serif;
    padding-left: 0.8em;
    margin: 0;
}

    ul li,
    ol li {
        margin-bottom: 12px;
    }

        ul li:last-child,
        ol li:last-child {
            margin-bottom: 24px;
        }

li span {
    padding-left: 4px;
}
/* 🔹 Unordered list marker: dash */
ul {
    list-style: none; /* remove default bullets */
}

    ul li::marker {
        content: "\2013\00a0";
        color: var(--color-deep-blue, #273A8A);
        font: 300 18px/150% "Hanken Grotesk", sans-serif;
    }

/* 🔹 Ordered list marker: number without dot */
ol {
    list-style: none;
    counter-reset: custom-counter;
}

    ol li {
        counter-increment: custom-counter;
    }

        ol li::marker {
            content: counter(custom-counter) " ";
            color: var(--color-deep-blue, #273A8A);
            font: 300 18px/150% "Hanken Grotesk", sans-serif;
        }

/* Primary Button Styling */
.primary__btn, .primary-btn {
    /* layout */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    min-width: 150px;
    height: 40px;
    flex-shrink: 0;
    /* visuals */
    border-radius: 64px;
    background: var(--color-deep-blue);
    color: #fff;
    border: none;
    /* type */
    text-align: center;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    font: 600 12px/12px "Hanken Grotesk", sans-serif;
}

    .primary__btn:hover,
    .primary-btn:hover {
        text-decoration: underline;
    }

    .primary__btn:focus-visible,
    .primary-btn:focus-visible {
        outline: 2px solid var(--color-deep-blue);
        outline-offset: 2px;
    }

.white__btn {
    /* layout */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    min-width: 150px;
    height: 40px;
    flex-shrink: 0;
    /* visuals */
    border-radius: 64px;
    background: var(--color-white);
    color: var(--color-deep-blue);
    border: none;
    /* type */
    text-align: center;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    font: 600 12px/12px "Hanken Grotesk", sans-serif !important;
}

    .white__btn:hover {
        text-decoration: underline;
    }

    .white__btn:focus-visible {
        outline: 2px solid var(--color-white);
        outline-offset: 2px;
    }

.apply-top-margin {
    margin-top: 48px;
}

.apply-bottom-margin {
    margin-bottom: 48px;
}

@media screen and (min-width:767.9px) {
    .apply-top-margin {
        margin-top: 64px;
    }

    .apply-bottom-margin {
        margin-bottom: 64px;
    }
}

section {
    display: flow-root;
}

.rte {
    max-width: 750px;
}

header li,
footer li {
    list-style: none
}

    header li::marker,
    footer li::marker {
        content: ""
    }
/* === Grid Container === */
.row {
    display: flex;
    flex-wrap: wrap; /* allows wrapping */
    margin-left: -15px; /* gutter */
    margin-right: -15px;
}

/* === Base Column === */
.col {
    flex: 1 0 0%; /* auto-fill */
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* === Column Sizes (default mobile-first) === */
.col-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col-11 {
    flex: 0 0 91.666%;
    max-width: 91.666%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* === Breakpoints === */
@media (min-width: 320px) {
    /* small devices */
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    /* tablets */
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1020px) {
    /* small laptops */
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1272px) {
    /* desktops */
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==============================
   TYPOGRAPHY SCALE
   ============================== */
.rte p, .RTE p {
    margin-bottom: 24px;
}
/* Remove margin-bottom from the last .rte element */
.rte:last-child {
    margin-bottom: 0;
}

/* Target the last element inside .rte (whether it's a <p>, <ul>, etc.) */
.rte > *:last-child {
    margin-bottom: 0 !important;
}

/* Remove margin-bottom from the last <li> in a <ul> or <ol> inside .rte */
.rte ul:last-child li:last-child,
.rte ol:last-child li:last-child {
    margin-bottom: 0;
}

/* Remove margin-bottom from a <p> if it is the last child in .rte and contains one of the icon link classes */
.rte > p:last-child:has(> .RTE__internal__icon__link) > .RTE__internal__icon__link,
.rte > p:last-child:has(> .RTE__external__icon__link) > .RTE__external__icon__link,
.rte > p:last-child:has(> .RTE__download__icon__link) > .RTE__download__icon__link {
    margin-bottom: 0;
}

/* Headings */
h1, h1.RTE {
    color: var(--color-deep-blue, #273a84);
    font: normal normal 100 37px/46.25px Canela;
    margin-bottom: 8px;
}

h2, h2.RTE {
    color: var(--color-deep-blue, #273a84);
    font: normal normal 100 29px/36.25px Canela;
    margin-bottom: 8px;
}

h3, h3.RTE {
    color: var(--color-deep-blue, #273a8a);
    font: normal normal 100 26px/32.5px Canela;
    margin-bottom: 8px;
}
    h3.RTE__small__bold {
        color: var(--color-clack, #242424);
        font: normal normal 600 18px/27px "Hanken Grotesk";
        margin-bottom: 4px;
    }
h4, h4.RTE {
    color: var(--color-deep-blue, #273a8a);
    font: normal normal 100 23px/28.75px Canela;
    margin-bottom: 4px;
    /*    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;*/
}

h5, h5.RTE {
    color: var(--color-deep-blue, #273a8a);
    font: normal normal 100 20px/25px Canela;
    margin-bottom: 4px;
    /*    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;*/
}

h6, h6.RTE {
    color: var(--color-deep-blue, #273a8a);
    font: normal normal 100 18px/22.5px Canela;
    margin-bottom: 4px;
    /*    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;*/
}
/* Stand-first (intro text) */
.stand-first-lg, h2.RTE__stand__first {
    color: var(--color-black, #242424);
    font: normal normal 100 26px/32.5px Canela;
    margin-bottom: 20px;
}

.stand-first-md, h3.RTE__stand__first__medium {
    color: var(--color-black, #242424);
    font: normal normal 100 23px/28.75px Canela;
    margin-bottom: 16px;
}

.stand-first-sm, h4.RTE__stand__first__small {
    color: var(--color-black, #242424);
    font: normal normal 100 20px/25px Canela;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

/* Body text */
.body-lg, p.RTE__body__large {
    color: var(--color-black, #242424);
    font: normal normal 300 18px/27px "Hanken Grotesk";
    margin-bottom: 24px;
}

.body-md, p.RTE__body__medium {
    color: var(--color-black, #242424);
    font: normal normal 300 16px/24px "Hanken Grotesk";
    margin-bottom: 20px;
}

.body-sm, p.RTE__body__small {
    color: var(--color-black, #242424);
    font: normal normal 300 14px/21px "Hanken Grotesk";
    margin-bottom: 16px;
}

/* Labels */
.label-lg {
    color: var(--color-black, #242424);
    font: normal normal 600 16px/20px "Hanken Grotesk";
}

.label-md {
    color: var(--color-black, #242424);
    font: normal normal 600 14px/17.5px "Hanken Grotesk";
}

.label-sm {
    color: var(--color-black, #242424);
    font: normal normal 600 12px/12px "Hanken Grotesk";
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

/* Captions */
.caption-md {
    color: var(--color-black, #242424);
    font: normal normal 300 14px/21px "Hanken Grotesk";
}

.caption-sm {
    color: var(--color-black, #242424);
    font: normal normal 400 12px/18px "Hanken Grotesk";
}

/* Footnote */
.footnote, p.footnote {
    color: var(--color-grey, #767676);
    font: normal normal 300 12px/18px "Hanken Grotesk";
}
/*STats*/
.rte-large,
p.rte-large,
.RTE__large,
p.RTE__large,
.rte .RTE__large {
    display: block;
    color: var(--color-deep-blue, #273A8A);
    font: normal 200 37px/37px "Hanken Grotesk";
    letter-spacing: -0.37px;
    margin-bottom: 8px;
}

.rte-small, .RTE__small, p.RTE__small, p.rte-small,
.rte .RTE__small {
    display: block;
    color: var(--color-deep-blue, #273A8A);
    font: normal 300 29px/29px "Hanken Grotesk";
    letter-spacing: -0.29px;
    margin-bottom: 4px;
}
/*Icon Link Styles*/
p:has(> .RTE__internal__icon__link),
p:has(> .RTE__external__icon__link),
p:has(> .RTE__download__icon__link) {
    margin: 0;
}

.RTE__internal__icon__link,
.RTE__external__icon__link,
.RTE__download__icon__link {
    display: flex;
    color: var(--color-black, #242424);
    font: 300 normal 18px/27px "Hanken Grotesk";
    text-decoration: none !important;
    gap: 6px;
    width: fit-content;
}

.RTE__internal__icon__link,
.RTE__external__icon__link {
    margin-bottom: 12px;
}

.RTE__download__icon__link {
    margin-bottom: 24px;
}

    .RTE__internal__icon__link span,
    .RTE__external__icon__link span,
    .RTE__download__icon__link span {
        margin-top: 1px;
    }

        .RTE__internal__icon__link span svg,
        .RTE__external__icon__link span svg,
        .RTE__download__icon__link span svg {
            width: 16px;
            height: 16px;
        }

    .RTE__internal__icon__link:hover,
    .RTE__external__icon__link:hover,
    .RTE__download__icon__link:hover {
        text-decoration: underline !important;
    }

    .RTE__internal__icon__link:focus-visible,
    .RTE__external__icon__link:focus-visible,
    .RTE__download__icon__link:focus-visible {
        text-decoration: none !important;
        outline: 2px solid #273a8a !important;
        outline-offset: 4px !important;
        border-radius: 4px !important;
    }

@media screen and (min-width: 1020px) {
    h1, h1.RTE {
        color: var(--color-deep-blue, #273a84);
        font-size: 42px;
        line-height: 52.5px;
        margin-bottom: 12px;
    }

    h2, h2.RTE {
        font-size: 37px;
        line-height: 46.25px;
    }

    h3, h3.RTE {
        font-size: 33px;
        line-height: 41.25px;
    }

    h4, h4.RTE {
        font-size: 29px;
        line-height: 36.25px;
        margin-bottom: 8px;
    }

    h5, h5.RTE {
        font-size: 23px;
        line-height: 28.75px;
    }

    h6, h6.RTE {
        font-size: 20px;
        line-height: 25px;
    }
    /* Stand-first (intro text) */
    .stand-first-lg, h2.RTE__stand__first {
        font-size: 33px;
        line-height: 41.25px;
        letter-spacing: 0.33px;
        margin-bottom: 32px;
    }

    .stand-first-md, h3.RTE__stand__first__medium {
        font-size: 29px;
        line-height: 36.25px;
        letter-spacing: 0.29px;
        margin-bottom: 28px;
    }

    .stand-first-sm, h4.RTE__stand__first__small {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .rte-large, .RTE__large {
        font-size: 47px;
        line-height: 47px;
        letter-spacing: -0.47px;
    }
    /*STats*/
    .rte-large,
    p.rte-large,
    .RTE__large,
    p.RTE__large,
    .rte .RTE__large {
        font-size: 47px;
        line-height: 47px;
        letter-spacing: -0.47px;
    }
}

@media screen and (min-width: 1272px) {
    h1, h1.RTE {
        font-size: 47px;
        line-height: 58.75px;
    }
}
/*Heder transparent CSS*/
.bg__transparent {
    background: transparent;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.50) 20%, rgba(0, 0, 0, 0.30) 40%, rgba(0, 0, 0, 0.20) 60%, rgba(0, 0, 0, 0.10) 80%, rgba(0, 0, 0, 0.00) 100%);
    background-blend-mode: multiply;
}

    .bg__transparent :is(.secondary__navbar,.primary__navbar) a {
        color: var(--color-white)
    }

    .bg__transparent .navbar__logo {
        filter: brightness(0) invert(1)
    }

    .bg__transparent .search-btn {
        background: transparent
    }

        .bg__transparent .search-btn img {
            filter: brightness(0) invert(1)
        }

        .bg__transparent .search-btn:hover {
            background: var(--color-white)
        }

            .bg__transparent .search-btn:hover img {
                filter: none
            }

    .bg__transparent .sm-search-btn {
        background: transparent;
    }

        .bg__transparent .secondary__navbar img,
        .bg__transparent .sm-search-btn img,
        .bg__transparent .btn-menu .icon-menu {
            filter: brightness(0) invert(1)
        }

    .bg__transparent .btn-menu {
        background: transparent;
    }

#mainContent {
    z-index: 999
}

/*.RTE .primary__btn, .rte .primary__btn {
    margin-top: 16px;
}*/

    .RTE .primary__btn a, .rte .primary__btn a {
        color: var(--color-white);
        font: inherit;
        text-decoration: inherit
    }
/*p {
    color: var(--color-black, #242424);
    font: normal 300 18px/27px "Hanken Grotesk", sans-serif;
}*/

.ripple-image, .preview-image {
    opacity: 0;
    /*visibility: hidden;*/
    animation: reveal 0.6s ease 1s forwards;
}

@keyframes reveal {
    to {
        opacity: 1;
        visibility: visible;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ripple-image, .preview-image {
        animation: none;
        opacity: 1;
        visibility: visible;
    }
}

/*.ga__banners {
    position: relative;
}*/
/* === Scroll indicator (center → bottom → wrap to top → center) === */
.scroll-indicator {
    /* tune these if you ever change sizes */
    --size: 44px; /* outer button size */
    --icon: 16px; /* chevron size */
    --pad: -2px; /* breathing room from the edge */

    --travel: calc((var(--size) - var(--icon)) / 2 - var(--pad));
    --dur: 2.2s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    z-index: 10;
    width: var(--size);
    height: var(--size);
    box-sizing: border-box;
    outline: 2px solid #fff;
    border-radius: 50%;
    background: rgba(36, 36, 36, 0.75);
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    display: grid; /* ensure inner is truly centered */
    place-items: center;
    transition: opacity 2.2s ease;
}

    .scroll-indicator img {
        width: var(--icon);
        height: var(--icon);
        filter: brightness(0) invert(1);
        display: block;
    }

    .scroll-indicator.is-hidden {
        opacity: 0;
        pointer-events: none;
    }

/* keep two animations, but linear so we control the holds via keyframes */
.scroll-indicator__anim {
    display: grid;
    place-items: center;
    height: 100%;
    will-change: transform, opacity;
    animation: scrollMove var(--dur) linear infinite, scrollOpacity var(--dur) linear infinite;
}

/* center → bottom (visible), WRAP (hidden), top → center (visible), HOLD at center */
@keyframes scrollMove {
    /* Hold at center */
    0%, 12% {
        transform: translateY(0);
    }
    /* Move down to bottom edge */
    42% {
        transform: translateY(var(--travel));
    }
    /* Instant wrap to top (happens while invisible) */
    43% {
        transform: translateY(calc(-1 * var(--travel)));
    }
    /* Glide back to center */
    78%, 100% {
        transform: translateY(0);
    }
    /* and hold again at center */
}

/* Fade so the bottom → top wrap is never seen, but center pause is visible */
@keyframes scrollOpacity {
    0%, 10% {
        opacity: 1;
    }
    /* visible during center hold */
    40% {
        opacity: 0.35;
    }
    /* start fading before bottom */
    43% {
        opacity: 0;
    }
    /* fully hidden at the wrap */
    60% {
        opacity: 0;
    }
    /* stay hidden a beat after wrap */
    90%, 100% {
        opacity: 1;
    }
    /* fade back in as it approaches center */
}
/* hide state for the scroll indicator */
/*.scroll-indicator.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}*/

@media (max-width:1019.9px) {
    .bannerRippleSmall .scroll-indicator,
    .bannerRippleMedium .scroll-indicator,
    #scroll__ind__large,
    .hide__scroll__indicator {
        display: none !important;
    }
}

/*Table Styling Block Start*/
/* Container to allow horizontal scrolling on small screens */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* Base table styling */
table {
    overflow-x: auto;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: sans-serif;
    min-width: 600px;
    font-family: Arial, sans-serif;
}

    /* Header row styling */
    table thead th {
        background-color: #fff;
        text-align: left;
        padding: 8px;
        border-block: 1px solid var(--color-deep-blue, #273a8a);
        color: var(--color-black, #242424);
        font-family: "Hanken Grotesk";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
    table thead tr {
        background-color: #fff;
        text-align: left;
        padding: 8px;
        border-block: 1px solid var(--color-deep-blue, #273a8a);
        color: var(--color-black, #242424);
        font-family: "Hanken Grotesk";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
    /* Table row styling */
    table tbody td {
        color: var(--color-black, #242424);
        font-family: "Hanken Grotesk";
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px;
        padding: 8px;
        border-bottom: 1px solid var( --color-grey-border,#d9d9d9);
    }

    /* Zebra striping for rows */
    table tbody tr:nth-child(odd) {
        background-color: rgba(39, 58, 138, 0.05);
    }

    /* Optional: add hover effect */
/*    table tbody tr:hover {
        background-color: rgba(39, 58, 138, 0.1);
    }*/
/*Table Style Block Ends*/

/* Breadcrumb styling */
.breadcrumb {
    /*    position: absolute;*/
    width: 100%;
    z-index: 3;
    background: transparent;
    /*    background: var(--color-white);*/
    padding-block: 16px;
}

    .breadcrumb div {
        line-height: 0px;
    }

.banner__ripple__full__width__module .breadcrumb {
    position: absolute;
    z-index: 3;
}

.breadcrumb__art div {
    grid-column: 1/-1;
}

.breadcrumb-item {
    color: var(--color-black, #242424);
    font-family: "Hanken Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

    .breadcrumb-item a {
        color: var(--color-black, #242424);
        text-decoration: none;
    }

        .breadcrumb-item a:hover {
            text-decoration: underline;
        }

        .breadcrumb-item a:focus-visible {
            border-radius: 4px;
            outline: 2px solid var(--color-deep-blue) !important;
            outline-offset: 4px;
        }

    .breadcrumb-item.active {
        color: var(--color-deep-blue, #273A8A);
        font-weight: 500;
    }

        .breadcrumb-item.active:focus-visible {
            outline: none
        }

    .breadcrumb-item + .breadcrumb-item::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        background-image: url(/assets/icons/blue/chev-right.svg);
        background-size: contain;
        background-repeat: no-repeat;
        /*    margin: 0 4px;*/
        margin-top: -1px;
        vertical-align: middle;
    }
        .breadcrumb-item + .breadcrumb-item.active::before{
            margin-right:3px;
        }
        /* -------------------------------
   Dark/Negative Breadcrumb Theme
----------------------------------*/
        .breadcrumb.negative {
            background: transparent;
            /*    background: rgba(255, 0, 0, 0.05);*/
        }

    .breadcrumb.negative .breadcrumb-item,
    .breadcrumb.negative .breadcrumb-item a {
        color: var(--color-white);
    }

        .breadcrumb.negative .breadcrumb-item.active {
            color: white;
            font-weight: 500;
        }

        /* Chevron for dark mode */
        .breadcrumb.negative .breadcrumb-item + .breadcrumb-item::before {
            filter: invert(1) brightness(2);
        }

@media screen and (max-width: 1019.9px) {
    /* Hide all items by default */
    #breadcrumb #breadcrumb-list .breadcrumb-item {
        display: none;
    }
        /* Show only the parent (second-to-last item) */
        #breadcrumb #breadcrumb-list .breadcrumb-item:nth-last-child(2) {
            display: inline;
        }
        /* If there's only one item, keep it visible */
        #breadcrumb #breadcrumb-list .breadcrumb-item:only-child {
            display: inline !important;
        }

            #breadcrumb #breadcrumb-list .breadcrumb-item:only-child .breadcrumb-item.active {
                display: inline !important;
            }
        /* If you want to ensure the current page (last item) NEVER shows under 1020 */
        #breadcrumb #breadcrumb-list .breadcrumb-item.active {
            display: none;
        }
        /* Rotate the chevron for the visible parent on small screens */
        #breadcrumb #breadcrumb-list .breadcrumb-item:nth-last-child(2)::before {
            transform: rotate(180deg);
            transform-origin: center;
            /* optional: tweak spacing so it looks like a back arrow */
            margin: -1px 4px 0 0; /* was 0 4px; move spacing to the left side */
        }
}

.results-text {
    color: var(--color-black, #242424);
    text-align: center;
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 32px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: var(--color-offset-white-1, #d4ede7);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-turquoise, #02a288);
    border-radius: 10px;
    width: calc(var(--viewed) / var(--total) * 100%);
    transition: width 0.3s ease;
}

.progress-indicator {
    position: absolute;
    top: -20px;
    left: calc(var(--viewed) / var(--total) * 100%);
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    transition: left 0.3s ease;
}

.lg__search__overlay {
    display: none;
}

.sm__search__overlay {
    display: none;
}

.search__overlay {
    background: rgba(36, 36, 36, 0.1);
    padding: 10px;
    position: absolute;
    top: 0;
    width: 100%;
}

.nav__search__container {
    grid-column: 4/-4;
}

.search__module {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
    padding: 8px 14px 8px 8px !important
}

@media screen and (min-width:768px) {
    .search__module {
        padding-right: 54px;
    }
}

@media screen and (min-width:1019.9px) {
    .search__overlay {
        padding: 12px;
    }

    .search__module {
        padding-block: 20px;
    }
}
/* Search field wrapper */
.search__wrapper {
    position: relative;
    width: min(520px, 92vw);
    margin-inline: auto;
    display: flex;
    padding: 20px 0;
}


/* Optional subtle fade of the close__search icon on hover */
.search__close__wrapper:hover img {
    filter: invert(1);
}

.search__close__wrapper {
    cursor: pointer;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 14px;
}

    .search__close__wrapper:hover {
        background-color: var(--color-deep-blue);
    }
/* close__search icon at far right */
.close__search {
    cursor: pointer;
}
/* Search icon */
.search__wrapper img {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}


/* Search field wrapper */
#search, .header-search-input {
    width: 100%;
    padding: 12px 16px;
    height: 48px;
    border: 1px solid var(--color-grey-border);
    border-radius: 4px;
    outline: none;
    color: var(--color-grey);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

    #search::placeholder,
    .header-search-input ::placeholder {
        color: var(--color-grey);
    }
    /* When input is focused */
    #search:focus,
    .header-search-input:focus {
        border: 2px solid var(--color-deep-blue);
    }

    /* Optional: when user is typing (non-empty input) */
    #search:not(:placeholder-shown),
    .header-search-input:not(:placeholder-shown) {
        border: 2px solid var(--color-deep-blue);
    }

    #search::placeholder,
    .header-search-input::placeholder {
        color: var(--color-grey);
    }

/* Search icon */
.search img {
    position: absolute;
    right: 12px;
    top: 70%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    stroke: var(--icon);
    pointer-events: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0px, 0px, 0px, 0px);
    padding: 0px;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border-width: 0px;
}
/* Js Container Styling */
.jsr__container > * {
    grid-column: 1/-1;
}

.search__subtitle__container .search__subtitle {
    color: var(--color-black, #242424);
    font: 600 12px/12px "Hanken Grotesk", sans-serif;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.search__subtitle__container {
    grid-column: 1/-1;
}

.search__title__container {
    grid-column: 1/-1;
}

.search__form {
    position: relative;
    margin-bottom: 32px;
}

    .search__form label {
        display: inline-block;
        color: var(--color-blackl, #242424);
        font: 400 12px/15px "Hanken Grotesk", sans-serif;
        margin-bottom: 8px;
    }

.search__title {
    color: var(--color-black, #242424);
    font: 600 18px/27px "Hanken Grotesk", sans-serif;
    margin-bottom: 4px;
}

.search__document-info {
    font-size: 14px;
    line-height: 21px;
}

    .search__document-info.search__document-info--bold {
        font-size: 14px;
        line-height: 21px;
        font-weight: bold;
    }

.search__link {
    position: absolute;
    inset: 0;
    bottom: 0;
    z-index: 2;
    top: 0;
    left: 0;
}

    .search__link:hover ~ .grid-col .search__title.js-title {
        text-decoration: underline;
        color: var(--color-deep-blue);
    }

.search__info {
    position: relative;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(4, 1fr);
}

    .search__info .search__info__subgrid {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1/-1;
    }

.srch__title {
    color: var(--color-deep-blue, #273a84);
    font-family: Canela;
    font-size: 29px;
    font-style: normal;
    font-weight: 100;
    line-height: 36.25px;
}

.search__button {
    margin-top: 1rem;
}

.js-search-results .search__container {
    padding-block: 20px;
    border-bottom: 1px solid var(--color-grey-border, #d9d9d9);
}

.js-search-results .search__wrap {
    border-bottom: 1px solid var(--color-grey-border, #d9d9d9);
}

.search__wrap .search-results-title {
    padding-block: 48px 32px;
}

@media screen and (min-width: 767.9px) {
    .jsr__container > * {
        grid-column: 2/-2;
    }

    .search__info {
        grid-template-columns: repeat(6, 1fr);
    }

    .search__subtitle__container {
        grid-column: 1 / span 2;
    }

    .search__title__container {
        grid-column: 3/-1;
    }

    .search__wrap .search-results-title {
        padding-block: 48px;
    }

    .search__form {
        margin-bottom: 48px;
    }
    .progress__out__container{
        grid-column:3/span 4
    }
}

@media only screen and (min-width: 1019.9px) {
    .search__info {
        grid-template-columns: repeat(10, 1fr);
    }

    .search__wrap .search-results-title {
        padding-block: 96px 48px;
    }
    .progress__out__container {
        grid-column: 5/span 4
    }
}

.green__btn {
    /* layout */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    min-width: 150px;
    height: 40px;
    flex-shrink: 0;
    /* visuals */
    border-radius: 64px;
    background: var( --color-light-turquoise-1, #52d7b4);
    color: var(--color-black);
    border: none;
    /* type */
    text-align: center;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    font: 600 12px/12px "Hanken Grotesk", sans-serif;
}

    .green__btn:hover {
        text-decoration: underline;
    }

    .green__btn:focus-visible {
        outline: 2px solid var(--color-deep-blue);
        outline-offset: 2px;
    }
