::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 8px;
}

@font-face {
    font-family: 'Gobold';
    src: url('fonts/Gobold Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.quattrocento-sans-regular {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.quattrocento-sans-bold {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.quattrocento-sans-regular-italic {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.quattrocento-sans-bold-italic {
    font-family: "Quattrocento Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}

:root {
    --bg: #0e111b;
    --body_bkg: #000;
    --panel: rgba(14,17,27,.88);
    --panel-alt: rgba(14,17,27,.72);
    --footer_bkg: rgba(0,0,0,.65);
    --text: #eef1ff;
    --cp-text: #b5c3b3;
    --muted: #b8bfd8;
    --theme-muted: #889f94;
    --theme-muted2: #687f74;
    --cp-muted: #889f94;
    --line: rgba(255,255,255,.10);
    --container: 1100px;
    --bar: rgba(3,1,33,.50);
    --barText: rgba(255,255,255,.92);
    --cp-bar-text: var(--cp-muted);
    --theme-bar-text: var(--theme-muted);
    --line: rgba(255,255,255,.18);
    --drawerBg: #0e1c10;
    --drawerText: rgba(255,255,255,.92);
    --drwrlink-clr: rgba(255,255,255,.92);
    --drwrlink-hvr-bkg: rgba(255,255,255,.06);
    --drwrlink-hvr-brdr-clr: rgba(255,255,255,.10);
    --cta: #b90f2a;
    --ctaText: #fff;
    --pb-dis: none;
    --hamlines-bkg: var(--cp-text);
    --article-font-family: 'Segoe UI';
    --dim_text: rgba(255,255,255,.2);
    --blue-text: #b6c0fb;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

body {
    font-family: Gobold, Inter, system-ui, sans-serif;
    background: var(--body_bkg);
    color: var(--text);
    line-height: 1.55;
}

/* Layout */
.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.no-scroll {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bar);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-logo {
    max-height: 45px;
    opacity: 0;
    transition: opacity 1.5s ease, top 1.5s ease, scale 1.5s ease, left 1.5s ease;
}

.content-logo {
    max-height: 45px;
    transition: opacity 0.8s ease;
}

.header-logo-ani {
    transform-origin: 0% center;
    position: relative;
    max-height: 45px;
    opacity: 1;
    transition: opacity 1.5s ease, scale 0.3s ease-in, top 0.3s ease-in;
    top: 100px;
    left: 0px;
    scale: 2;
    max-width: unset;
}

.brand {
    letter-spacing: .22em;
    font-size: 18px;
    color: var(--barText);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Desktop nav */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 26px;
}

.nav-link {
    color: var(--barText);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px;
    font-weight: 600;
    opacity: .95;
}

    .nav-link:hover {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

.nav-link--cta {
    padding: 10px 14px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
}

    .nav-link--cta:hover {
        text-decoration: none;
        border-color: rgba(255,255,255,.6);
    }

/*Hamburger*/
.hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 10px;
}

    .hamburger:focus-visible {
        outline: 2px solid rgba(255,255,255,.75);
        outline-offset: 2px;
    }

.hamburger-lines {
    position: relative;
    width: 26px;
    height: 2px;
    background: var(--hamlines-bkg);
    border-radius: 2px;
}

    .hamburger-lines::before,
    .hamburger-lines::after {
        content: "";
        position: absolute;
        left: 0;
        width: 26px;
        height: 2px;
        background: var(--hamlines-bkg);
        border-radius: 2px;
    }

    .hamburger-lines::before {
        top: -8px;
    }

    .hamburger-lines::after {
        top: 8px;
    }

/* Backdrop */
.backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0,0,0,.48);
    opacity: 0;
    transition: opacity .2s ease;
}

    .backdrop.is-visible {
        opacity: 1;
    }
/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 86vw);
    z-index: 70;
    background: var(--drawerBg);
    color: var(--theme-muted);
    border-left: 1px solid rgba(255,255,255,.12);
    transform: translateX(100%);
    transition: transform .2s ease;
    display: flex;
    flex-direction: column;
}

    .drawer.is-open {
        transform: translateX(0);
    }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.drawer-brand {
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 14px;
    opacity: .9;
}

.drawer-close {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,.92);
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

    .drawer-close:focus-visible {
        outline: 2px solid rgba(255,255,255,.75);
        outline-offset: 2px;
    }

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 18px;
}

.drawer-link {
    padding: 14px 12px;
    margin: 4px 6px;
    border-radius: 12px;
    color: var(--cp-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px;
    font-weight: 650;
    border: 1px solid transparent;
}

    .drawer-link:hover {
        background: var(--drwrlink-hvr-bkg);
        border-color: var(--drwrlink-hvr-brdr-clr);
    }

.drawer-link--cta {
    margin-top: 10px;
    background: var(--cta);
    border-color: rgba(255,255,255,.0);
    color: var(--ctaText);
    text-align: center;
    letter-spacing: .10em;
}

    .drawer-link--cta:hover {
        background: #d11534;
    }

.page {
    min-height: 100vh;
}

.hero {
    padding: 60px 0 20px;
    background: radial-gradient(900px 450px at 20% 20%, rgba(255,255,255,.14), transparent 60%);
}

@media (min-width: 2000px) {
    .hamburger {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .drawer {
        display: none;
    }

    .backdrop {
        display: none !important;
    }
}
/*@media (min-width: 900px) {

    .drawer {
        display: none;
    }
    .backdrop {
        display: none !important;
    }
}*/

.site-footer {
    background: var(--footer_bkg);
    color: var(--dim_text);
    /*border-bottom: 1px solid var(--line);*/
    position: relative;
    z-index: 3;
}

.site-footer {
    /*border-top: 1px solid var(--line);*/
}

    .site-header .container,
    .site-footer .container {
        padding: 16px 0;
    }

.band {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    background: var(--panel);
    /*backdrop-filter: blur(6px);
    border-top: 1px solid var(--line);*/
}

.band--alt {
    background: var(--panel-alt);
}

/* Typography */
h1, h2 {
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem,4vw,3.2rem);
}

h2 {
    font-size: clamp(1.6rem,2.4vw,2.1rem);
}

.lead {
    font-size: 1.1rem;
    color: var(--theme-muted);
    max-width: 60ch;
}

/* PARALLAX SECTION */
.parallax {
    isolation: isolate;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}
    /* min-height: 350px; */
    .parallax.top-band {
        min-height: 200px;
        align-items: start;
    }

    .parallax.topic-overview {
        min-height: 500px;
        align-items: start;
    }
/* Layer stack */
.parallax-layer {
    position: absolute;
    inset: -12%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) scale(1.06);
    transition: left 3000ms linear;
    will-change: transform;
    z-index: 0;
    pointer-events: none;
}

.band-content-container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.band-content {
    font-family: system, 'Segoe UI','Century Gothic', Garamond, "Quattrocento Sans";
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    color: var(--cp-text);
    /*max-width: 385px;*/
}

.flex-left {
    align-items: flex-start;
}

.thin-content {
    max-width: 385px;
}

.tile-imgtext-cont-hor {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}
/* Base layer (the photo / main image) */
.layer-base {
    /*filter: saturate(1.05) contrast(1.05);*/
}

.top-band > .layer-base {
    background-image: url("img/bkg_spots_b7_bl.png");
    background-size: 50% 77%;
    background-repeat: repeat;
    scale: 1.7;
    opacity: 0;
    /*filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1.5px)*/
}

.aide-top-band > .layer-base {
    background-image: url("img/g2425b.png");
    background-size: auto;
    background-repeat: no-repeat;
    scale: 0.6;
    opacity: 1;
    background-position: center top;
}

.btc33 {
    width: 20vw;
    align-items: center;
    padding-left: 20px;
}
.fl-flx-cont {
    width: 25vw;
    align-items: start;
    /*padding-left: 20px;*/
    padding:45px 0px 45px 0px;
}
.fl-flx-cont > ul {
    margin-top: 0px;
}
.fleshmen-band {
    height: 600px;
}

    .fleshmen-band > .layer-base {
        background-image: url("img/pbt_tb.png");
        /*background-size: cover;
    background-repeat: repeat;*/
        scale: 1.0;
        opacity: 1;
        background-position-y: 100px;
        background-size: 75%;
        /*filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1.5px)*/
        height: 625px;
    }

    .fleshmen-band > .layer-tint {
        /*background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);*/
        background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.54), rgba(10,20,40,0.60) 60%, rgba(0,0,0,0.95) 100%);
        mix-blend-mode: darken; /* overlay | soft-light | multiply; screen; */
        opacity: 1;
    }
/*p2 to fi-0*/
.parallax.fi-0 {
    align-items: start;
}

.fi-0 > .layer-base {
    background-image: url("img/bkg_spots_b7_bl.png");
    background-size: 50% 77%;
    background-repeat: repeat;
    scale: 1.7;
    opacity: 0;
    /*filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1.5px)*/
}

.fi-0 > .layer-base2 {
    background-image: url("img/bkg_spots_bl_b7_nobkg.png"); /*bkg_spots_4*/
    background-size: 18% 180%;
    background-repeat: repeat;
    opacity: 0;
    scale: 1.8;
    /* filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1px)*/
}

.fi-0 > .layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: overlay | soft-light | multiply; /* screen; */
    opacity: 0.45;
}

.fi-0 > .layer-noise {
    background-image: url("img/hexellence.png");
    background-size: 15% 15%;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    filter: contrast(1) brightness(100%) blur(3px);
    /*rotate: 40deg;*/
}

.fi-0 > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    background-repeat: repeat;
    mix-blend-mode: soft-light;
    opacity: 0.2;
    filter: blur(2px);
}

.fi-0.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 80% 80%;
    background-position: center center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
}

.parallax.cp-top-band {
    align-items: start;
}

.cp-top-band > .layer-base {
    background-image: url("img/g121273c.png");
    background-size: 50% 77%;
    background-repeat: no-repeat;
    scale: 1.0;
    opacity: 0.5;
    /*filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1.5px)*/
}

.cp-top-band > .layer-base2 {
    background-image: url("img/bkg_spots_bl_b7_nobkg.png"); /*bkg_spots_4*/
    background-size: 18% 180%;
    background-repeat: no-repeat;
    opacity: 0;
    scale: 1.8;
    /* filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1px)*/
}

.cp-top-band > .layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: overlay | soft-light | multiply; /* screen; */
    opacity: 0.45;
}

.cp-top-band > .layer-noise {
    background-image: url("img/hexellence.png");
    background-size: 15% 15%;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    filter: contrast(1) brightness(100%) blur(3px);
    /*rotate: 40deg;*/
}

.cp-top-band > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    background-repeat: repeat;
    mix-blend-mode: soft-light;
    opacity: 0.2;
    filter: blur(2px);
}

.cp-top-band_elide.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 80% 80%;
    background-position: center center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.aide > .layer-base {
    background-image: url("img/bkg_spots_b7_bl.png");
    background-size: 50% 77%;
    background-repeat: repeat;
    scale: 1.7;
    opacity: 0;
    /* filter: saturate(1.05) contrast(1.05)brightness(300%); blur(1.5px)*/
}

.fleshmen > .layer-base {
    background-image: url("img/bkg_spots_b7_bl.png");
    background-size: 50% 77%;
    background-repeat: repeat;
    scale: 1.7;
    /* filter: saturate(1.05) contrast(1.05)brightness(300%); blur(1.5px)*/
}

.computations > .layer-base {
    background-image: url("img/bkg_spots_b7_bl.png");
    background-size: 50% 77%;
    background-repeat: repeat;
    scale: 1.7;
    /* filter: saturate(1.05) contrast(1.05)brightness(300%); blur(1.5px)*/
}

.top-band > .layer-base2 {
    background-image: url("img/bkg_spots_bl_b7_nobkg.png"); /*bkg_spots_4*/
    background-size: 18% 180%;
    background-repeat: repeat;
    opacity: 0;
    scale: 1.8;
    /* filter: saturate(1.05) contrast(1.05) brightness(300%); blur(1px)*/
}

.aide > .layer-base2 {
    background-image: url("img/bkg_spots_bl_b7_nobkg.png");
    background-size: 18% 180%;
    background-repeat: repeat;
    opacity: 0;
    scale: 1.8;
    /*filter: saturate(1.05) contrast(1.05)brightness(300%); blur(1px)*/
}

.fleshmen > .layer-base2 {
    background-image: url("img/bkg_spots_bl_b7_nobkg.png");
    background-size: 18% 180%;
    background-repeat: repeat;
    opacity: 0;
    scale: 1.8;
    /*filter: saturate(1.05) contrast(1.05)brightness(300%); blur(1px)*/
}

.computations > .layer-base2 {
    background-image: url("img/bkg_spots_bl_b7_nobkg.png");
    background-size: 18% 180%;
    background-repeat: repeat;
    opacity: 0;
    scale: 1.8;
    /*filter: saturate(1.05) contrast(1.05)brightness(300%); blur(1px)*/
}

/* Color grade / tint layer (pure CSS, no assets needed) */

.layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: screen; /* try: overlay | soft-light | multiply */
    opacity: 0.85;
}

.top-band > .layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: overlay | soft-light | multiply; /* screen; */
    opacity: 0.45;
}

.aide > .layer-tint {
    background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.22), rgba(10,20,40,0.10) 60%, rgba(0,0,0,0.25) 100%);
    mix-blend-mode: overlay | soft-light | multiply; /* screen; */
    opacity: 0.45;
}

.layer-noise {
    mix-blend-mode: overlay;
    filter: contrast(1.2);
}

.top-band > .layer-noise {
    background-image: url("img/hexellence.png");
    background-size: 15% 15%;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    filter: contrast(1) brightness(100%) blur(3px);
    /*rotate: 40deg;*/
}

.aide > .layer-noise {
    background-image: url("img/hexellence.png"); /* add your own texture here */
    background-size: 15% 15%;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    filter: contrast(1) brightness(100%) blur(3px);
    /*rotate: 40deg;*/
}


/* Fog / haze (pure CSS) */
.layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    mix-blend-mode: soft-light;
    opacity: 0.7;
    filter: blur(2px);
}

.top-band > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    background-repeat: repeat;
    mix-blend-mode: soft-light;
    opacity: 0.2;
    filter: blur(2px);
}

.aide > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    mix-blend-mode: soft-light;
    opacity: 0.2;
    filter: blur(2px);
}

.fleshmen > .layer-fog {
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.00) 55%), radial-gradient(circle at 30% 70%, rgba(180,220,255,0.12), rgba(0,0,0,0.00) 60%);
    mix-blend-mode: soft-light;
    opacity: 0.2;
    filter: blur(2px);
}
/* Abstract overlay linear-gradient( to bottom, rgba(14,17,27,0.95), rgba(14,17,27,0.45), rgba(14,17,27,0.95) ),*/
.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.top-band.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 80% 80%;
    background-position: center center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
}

.aide.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 40% 30%;
    background-position: center center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
}

.fleshmen.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 300px 246px;
    background-position: center center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
}

.computations.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 40% 30%;
    background-position: center, center;
    /*background-repeat: no-repeat;*/
    z-index: 1;
    pointer-events: none;
}

/* Text layer (scrolls normally) */
.parallax-content {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    background: transparent;
}

.section-content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    background: transparent;
}

.fleshmen-band-content {
    padding: 0;
}

.fleshmen-info-content {
    padding: 30px 0;
}
/* Responsive */
@media (max-width:900px) {
    .band {
        padding: 64px 0;
    }

    .parallax {
        min-height: 220px;
    }

    .parallax-content {
        padding: 150px 0;
        background: transparent;
    }

    .fleshmen-band-content {
        padding: 0;
    }

    .fleshmen-info-content {
        padding: 30px 0;
    }
    /*.p2 > .layer-base {
        filter: saturate(1.05) contrast(1.05) blur(1px) brightness(300%);
    }*/
    .top-band > .layer-base2 {
        opacity: 0;
        /*filter: saturate(1.05) contrast(1.05) blur(0.5px);*/
    }

    /*.aide > .layer-base {
        filter: saturate(1.05) contrast(1.05) blur(1px) brightness(300%);
    }

    .aide > .layer-base2 {
        filter: saturate(1.05) contrast(1.05) blur(0.5px);
    }*/

    .band-nonp-img {
        margin: auto auto;
    }

    #comp-band-img {
        margin: auto auto;
    }

    .tile-imgtext-cont-hor {
        flex-direction: column;
        gap: 30px;
    }

    .header-logo-ani {
        max-width: 160px;
    }

    .bni60 {
        width: auto;
    }

    .fleshmen-band {
        height: 400px;
    }

    .aide-top-band > .layer-base {
        background-position: left top;
    }
}
/* 3-up grid margin-top: 80px;*/
.three-up {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: transparent;
}

.two-one-up {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: transparent;
}
/*cards*/
.card-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    z-index: 1;
    position: relative;
}

.card-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.card-border {
    border: solid 1px #84a66b47;
    border-radius: 8px;
    padding: 8px 12px;
}

.card {
    flex: 0 1 30%; /* preferred width */
    min-width: 220px;
    min-height: 180px;
    max-width: 500px;
}

.card-content {
    font-family: system, 'Segoe UI','Century Gothic', Garamond, "Quattrocento Sans";
    color: var(--cp-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

    .card-content > h2 {
        font-size:  clamp(1.6rem, 2.0vw, 1.9rem);
    }
.card-cont-hor {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    height: 85%;
}

.card-fd-left {
    align-items: flex-start;
}

.card-text-container {
    display: flex;
    overflow: auto;
    scrollbar-color: #888 transparent;
    scrollbar-width: thin; /*thumb color, track color */ /*  makes the scrollbar thinner */
}

    .card-text-container > p {
        padding: 0;
        margin: 5px;
    }

.card-img-cont {
    display: flex;
    justify-content: inherit;
    position: relative;
    margin: auto 0;
    height: 85%;
}
/*padding: 20px;*/
#aide-card-img {
    margin: auto;
    height: 100%;
    width: auto;
    cursor: pointer;
}

#cp-card-img {
    margin: auto;
    height: 100%;
    width: auto;
    cursor: pointer;
}

#fl-card-img {
    margin: auto;
    height: auto;
    width: 125px;
    cursor: pointer;
}

.ch225 {
    height: 225px;
}

.cp20 {
    padding: 20px;
}

.cp-tr-bkg {
    background: transparent;
}
/*tiles*/
.tile {
    /*background: rgba(0,0,0,.18);
    background-color: transparent;*/
    background: transparent;
    /*border: 1px solid rgba(255,255,255,.12);*/
    border-radius: 18px;
    padding: 18px 18px 16px;
    /*backdrop-filter: blur(0.5px);
    min-height: 160px;*/
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.tile-title {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--cp-text);
    pointer-events: none;
}

.tile-text-subtitle {
    margin: 0;
    color: var(--theme-muted);
    max-width: 60ch;
    pointer-events: none;
}

.tile-text {
    font-family: "Quattrocento Sans", sans-serif;
    margin: 0;
    color: var(--theme-muted);
    max-width: 60ch;
}

.tile-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--barText);
    text-decoration: none;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    /*padding: 10px 12px;*/
    border-radius: 999px;
    /*border: 1px solid rgba(255,255,255,.22);*/
    width: fit-content;
}

.tile-href {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-bar-text);
    text-decoration: none;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    /*padding: 10px 12px;*/
    border-radius: 999px;
    /*border: 1px solid rgba(255,255,255,.22);*/
    width: fit-content;
    align-self: end;
}

.tile-link:hover {
    border-color: rgba(255,255,255,.45);
    text-decoration: none;
}

.tile-img {
    height: 80px;
    border-radius: 10px;
}

.tile-imgtext-cont {
    display: inherit;
    flex-direction: inherit;
    align-items: center;
    min-height: 120px;
}

.tile-img-cont {
    display: flex;
    justify-content: inherit;
    position: relative;
    margin: auto 0;
    padding: 20px;
    /*height: 300px;*/
}

.tile-link-cont {
    display: flex;
    align-items: inherit;
}

.band-img-cont {
    display: flex;
    justify-content: inherit;
    position: relative;
    margin: auto 0;
    padding: 20px;
    height: 300px;
}

.band-nonp-img {
    margin: auto 100px;
    width: 300px;
}

.fleshman-nonp-img {
    margin: auto;
    height: 300px;
    width: auto;
}

#cp-band-img {
    margin: auto;
    height: 100%;
    width: auto;
}

.w100 {
    width: 100%;
}

.bni60 {
    width: 60vw;
}

#comp-band-img {
    width: 300px;
}

#magn-band-img {
    width: 300px;
}

#aide-band-img {
    margin: auto;
    height: auto;
    width: 150px;
    cursor: pointer;
}
.fl-band-img {
    margin: auto;
    height: auto;
    width: 350px;
    max-width: 70vw;
    cursor: pointer;
    border-radius: 18px;
}
.fl-band-img2 {
    margin: auto;
    height: 265px;
    width: auto;
    max-width: 55vw;
    cursor: pointer;
    border-radius: 18px;
}
#mobile-only {
    display: none;
}

.aide, .fleshmen, .computations {
    display: block;
}
/* Responsive collapse */



.band-text-container {
    display: flex;
    overflow: auto;
    scrollbar-color: #888 transparent;
    scrollbar-width: thin; /*thumb color, track color */ /*  makes the scrollbar thinner */
}

.bt-med-row {
    height: 300px;
}

.bt-hor {
    flex-direction: row;
}

.bt-vert {
    flex-direction: column;
}

.article-img-cont {
}

.article-img {
    max-width: 67%;
    max-height: 300px;
    display: block;
    margin: auto;
}

.text-content {
    font-family: system-ui,system,'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-left: 0px;
    margin-right: 0px;
}
.fl-text-content {
    font-family: system-ui,system,'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 16px;
    font-size: 0.9em;
}
.text-link {
    cursor: pointer;
}

.show-while-scrolling {
    opacity: 0;
    /*transform: translateY(500px);  where it goes when hiding left: -2000px;*/
    left: 0px;
    will-change: opacity, left;
    transition: opacity 1250ms ease, left 2500ms ease;
    pointer-events: none;
}

    .show-while-scrolling.is-scrolling {
        transition: opacity 500ms ease, left 500ms ease-in;
        will-change: opacity, left;
        opacity: 1;
        /*transform: translateY(0);*/
        left: 0px;
    }
/*.pre-img {
    display: inline-block;
}*/
.p-img-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.pad20 {
    padding: 20px;
}

.article-container {
    margin: 0 auto;
    max-width: 900px;
    padding: 50px;
    border: 1px solid #555;
    border-radius: 14px;
}

@media (min-width: 901px) and (max-width: 1100px) {
    .three-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        background: transparent;
    }

    .two-one-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        background: transparent;
    }
}
/*short*/
.aide, .fleshmen, .computations {
    display: none;
}

@media (max-width: 900px) {
    .three-up {
        grid-template-columns: 1fr;
        gap: 60px;
        background: transparent;
    }

    .two-one-up {
        grid-template-columns: 1fr;
        gap: 60px;
        background: transparent;
    }

    #mobile-only {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .aide, .fleshmen, .computations, .card-summary {
        display: none;
    }

    .article-container {
        padding: 0;
    }
    .flex-col-rev-mob {
        flex-direction: column-reverse;
        gap: 0px;
    }
    .fl-flx-cont {
        width: 85vw;
        padding: 0;
    }
    .bt-med-row {
        height: unset;
    }
    .article-img {
        max-width: 95%;
        max-height: 300px;
        display: block;
        margin: auto;
    }
    .text-content {
        margin-left: 7px;
        margin-right: 7px;
    }
}

.art-nobrdr {
    border: none;
}

article {
    font-family: var(--article-font-family);
}

    article > .article-header {
        text-align: center;
    }

    article.article-body {
    }

    article p {
        font-size: 0.8em;
    }
    article li {
        font-size: 0.8em;
    }
    article h2 {
    }

    article h3 {
    }

.container.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--theme-muted2);
    font-size: 0.6em;
}

.contact-logo {
    width: 35px;
    height: 35px;
}

.theme-muted-clr {
    color: var(--theme-muted);
}
.theme-muted2-clr {
    color: var(--theme-muted2);
}
.blue-txt-clr {
    color: var(--blue-text);
}
/*.aide.parallax::before {
    background: url("img/sd_rs_grid_2.png");
    background-size: 20%, 20%;
    background-position: center, center;
}*/
/* Dark overlay for contrast 
    .parallax::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(14,17,27,1.0), rgba(14,17,27,.40), rgba(14,17,27,1.0) );
        z-index: 1;
    }*/
/*
    .parallax > * {
        position: relative;
        z-index: 2;
    }*/
