:root {
    --app-navbar-min-height: 3.5rem;
    --bs-dark: #000000;
    --bs-dark-bg-subtle: #1A1A1A;
    --bs-dark-rgb: 00, 00, 00;
    --bs-blue: #0261F5;
    --bs-primary-rgb: 16, 93, 231;
    --bs-dark-blue: #16213b;
    --bs-secondary-bg-rgb: 241, 239, 236;
    --bs-tertiary-color: #96989E;
    --bs-white-80: rgba(255, 255, 255, 0.8);
    --marquee-duration: 60s;
}

html, body {
    overscroll-behavior: none;
}

body {
    padding-top: var(--app-navbar-min-height);
}

body > header {
    height: var(--app-navbar-min-height);
}

.scroll-margin-top {
    scroll-margin-top: var(--app-navbar-min-height);
}

.navbar {
    --bs-navbar-color: var(--bs-white);
    --bs-navbar-active-color: var(--bs-white);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.5);
    --bs-navbar-toggler-border-color: transparent;
    --bs-navbar-toggler-padding-y: .5rem;
}

.navbar.nav-main.bg-dark {
    --bs-bg-opacity: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {
    display: none;
}

.navbar-nav {
    --bs-nav-link-color: var(--bs-white);
    --bs-nav-link-hover-color: var(--bs-info);
    --bs-navbar-active-color: var(--bs-info);
}

.navbar-toggler, .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.navbar.nav-cart .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-fade-sentinel {
    view-timeline-name: --navfade;
    view-timeline-axis: block;
}

.landmark {
    scroll-margin-top: var(--app-navbar-min-height);
}

button.navbar-fade.navbar-toggler {
    transition: background-color 150ms linear;
}

footer .nav-item {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-color: var(--bs-white);
    --bs-nav-link-hover-color: var(--bs-info);
}

.marquee {
    user-select: none;
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
}

.marquee-track {
    min-height: 14rem;
    width: max-content;
    will-change: transform;
    animation: marquee var(--marquee-duration) linear infinite;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
    animation-play-state: paused;
}

.bg-body-secondary .list-group {
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: transparent;
    --bs-list-group-border-width: 0;
    --bs-list-group-item-padding-x: .75rem;
    --bs-list-group-item-padding-y: .5rem;
    /*--bs-list-group-action-color: #{$list-group-action-color};*/
    /*--bs-list-group-action-hover-color: #{$list-group-action-hover-color};*/
    --bs-list-group-action-hover-bg: transparent;
    --bs-list-group-action-active-color: var(--bs-heading-color);
    --bs-list-group-action-active-bg: transparent;
    /*--bs-list-group-disabled-color: #{$list-group-disabled-color};*/
    /*--bs-list-group-disabled-bg: #{$list-group-disabled-bg};*/
    --bs-list-group-active-color: var(--bs-heading-color);
    --bs-list-group-active-bg: transparent;
    /*--bs-list-group-active-border-color: #{$list-group-active-border-color};*/
}

@supports (animation-timeline: scroll()) {
    button.navbar-fade.navbar-toggler {
        animation-name: togglerBgFade;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: scroll(block);
        animation-range: 100px 220px;
    }
    @keyframes togglerBgFade {
        from { background-color: rgba(0, 0, 0, 0); }
        to   { background-color: rgba(0, 0, 0, .5); }
    }
}

.cart-count {
    --bs-badge-color: white;
}

.offcanvas {
    --bs-offcanvas-padding-y: 2rem;
    --bs-offcanvas-padding-x: 1.5rem;
    --bs-offcanvas-width: 90%;
    --bs-bg-opacity: 1;
}

.search-wrapper {
    background-color: white;
    border: 1px solid rgb(62, 70, 78);
    border-radius: 50%;
    transition: border-color 0.15s ease-in, box-shadow 0.15s ease-in;
}

.search-wrapper:focus-within {
    background-color: white;
    border-color: rgba(13, 110, 253, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.search-wrapper > .form-control {
    --bs-body-bg: transparent;
}

.search-wrapper > .form-control:focus {
    box-shadow: none;
}

.btn-search-toggle {
    --bs-btn-color: var(--bs-gray-500);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-gray-700);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: var(--bs-white);
    --bs-btn-active-color: var(--bs-blue);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-white);
    border-radius: 50%;
}

.primary-tooltip {
    --bs-tooltip-bg: var(--bs-blue);
    --bs-tooltip-color: var(--bs-white);
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(400px, auto);
    align-items: center;
}

.hero > picture,
.hero > .hero-content {
    grid-area: 1 / 1;
}

.hero > picture {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero > .hero-content {
    z-index: 2;
    position: relative;
    color: var(--bs-white);
}

.hero-hgroup {
    text-align: center;
    margin: 1rem;
}

.hero-hgroup h1 {
    border-bottom: 4px solid var(--bs-blue);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}

.hero-hgroup p {
    color: var(--bs-white);
    font-size: 1.2rem;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr;
}

.cta-panel {
    display: grid;
    grid-template-areas: "stack";
    min-height: 242px;
}

.cta-panel-img {
    grid-area: stack;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cta-panel-content {
    grid-area: stack;
    z-index: 2;
    width: 50%;
    max-width: 520px;
    color: var(--bs-dark);
    padding: 30px;
}

.cta-panel-headline {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-panel-description {
    margin-bottom: 1.5rem;
}

.place-center {
    place-items: center;
}

.place-center-end {
    place-items: center end;
}

.place-center-start {
    place-items: center start;
}

.place-end-start {
    place-items: end start;
}

.btn-primary {
    --bs-btn-font-weight: 500;
}

.btn-primary.btn-lg {
    --bs-btn-padding-y: .5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1rem;
}

.bg-light-repeat {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoMXYxSDB6Ii8+PC9zdmc+");
    background-repeat: repeat;
}

.bg-info-repeat {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCI+CiAgICA8cmVjdCB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9IiNmZmI2MDAiLz4KPC9zdmc+Cg==");
    background-repeat: repeat;
}

.global-markets-img {
    max-width: 508px;
    width: 100%;
    height: auto;
    aspect-ratio: 832/1077;
}

.h2-display {
    font-size: calc(1.625rem + 4.5vw);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--bs-white);
    text-align: center;
}

.h3-display {
    font-size: 24px;
    font-weight: 400;
}

.fs-huge {
    font-size: 16em;
    font-weight: 700;
}

.fs-lg {
    font-size: 3rem;
    font-weight: 400;
}

.fs-xl {
    font-size: 3.3rem;
    font-weight: 400;
    letter-spacing: .01em;
}

.opacity-hover {
    opacity: 0.5;
    transition: opacity 150ms ease-in-out;
}

.opacity-hover:hover,
.logo-link:hover .opacity-hover {
    opacity: 0.9;
}

.justify-items-start {
    justify-items: start;
}

.justify-items-end {
    justify-items: end;
}



.stealth-card {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .stealth-card {
        display: grid;
        grid-template-columns: 250px 1fr;
        grid-template-areas:
            "logo title"
            "logo description";
        gap: 20px;
        align-items: start;
    }
    .stealth-image {
        grid-area: logo;
    }
    .stealth-title {
        grid-area: title;
        align-self: end;
    }
    .stealth-description {
        grid-area: description;
        align-self: start;
    }
}

.pagination-fixed {
    --bs-pagination-padding-x: .75rem;
    --bs-pagination-padding-y: .5rem;
    --bs-pagination-color: var(--bs-white);
    --bs-pagination-bg: var(--bs-primary);
    --bs-pagination-border-width: 0;
    --bs-pagination-hover-color: var(--bs-white);
    --bs-pagination-hover-bg: #003280;
    --bs-pagination-active-color: var(--bs-white);
    --bs-pagination-active-bg: #003280;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
    .navbar.nav-cart .navbar-nav .nav-link {
        --bs-navbar-nav-link-padding-x: 0;
    }
    .hero-bg {
        object-position: 50% center;
    }
    .border-lg-none {
        border: none !important;
    }
    .w-lg-auto {
        width: auto !important;
    }
}

@media (min-width: 992px) {
    :root {
        --app-navbar-min-height: 10rem;
    }

    .navbar.nav-main {
        --bs-navbar-padding-x: 0;
        --bs-navbar-padding-y: 1rem;
    }

    .navbar.nav-main.bg-dark {
        --bs-bg-opacity: 1;
    }

    .navbar-brand {
        display: block;
    }

    .navbar-expand-lg .offcanvas .offcanvas-body {
        flex-direction: row-reverse;
    }

    .navbar-nav {
        --bs-nav-link-color: var(--bs-white);
        --bs-nav-link-padding-y: 0;
    }

    .nav-link {
        --bs-navbar-nav-link-padding-x: .5rem;
        --bs-navbar-nav-link-padding-y: 0;
        --bs-nav-link-font-size: 1rem;
        --bs-nav-link-font-weight: 400;
    }

    .navbar.nav-cart .navbar-nav {
        justify-content: flex-end;
        --bs-nav-link-padding-y: .4rem;
    }

    .navbar.nav-cart .navbar-nav .nav-link {
        width: auto;
        justify-content: flex-end;
    }

    .pagination-fixed {
        --bs-pagination-padding-x: 1.5rem;
        --bs-pagination-padding-y: 1rem;
    }

    .hero-hgroup {
        display: flex;
        justify-content: center;
        align-items: baseline;
        width: 75%;
        margin-bottom: 5rem;
    }

    .hero-hgroup h1 {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        margin-right: 1rem;
        text-align: right;
        width: 40%;
    }

    .hero-hgroup p {
        border-left: 4px solid var(--bs-blue);
        padding: 2rem;
        text-align: left;
        margin-left: 1.2rem;
        margin-bottom: 0;
        color: var(--bs-white);
        font-size: 1.2rem;
        width: 60%;
    }

    .cta-split {
        grid-template-columns: 1fr 1fr;
    }

    .cta-panel {
        min-height: 386px;
    }

    .cta-panel-content {
        padding: 60px 40px;
        font-size: 1.05rem;
    }

    .btn-primary.btn-lg {
        --bs-btn-padding-y: .65rem;
        --bs-btn-padding-x: 1.5rem;
        --bs-btn-font-size: 1.25rem;
    }

    .h2-display {
        font-size: 3rem;
        text-align: left;
        margin-left: 3rem;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .justify-items-lg-start {
        justify-items: start;
    }

    .justify-items-lg-end {
        justify-items: end;
    }
}

@media (min-width: 1200px) {
    :root {
        --app-navbar-min-height: 10.6rem;
    }
    .nav-link {
        --bs-navbar-nav-link-padding-x: 1rem;
        --bs-nav-link-font-size: 1.125rem;
    }
    .justify-items-xl-start {
        justify-items: start;
    }

    .justify-items-xl-end {
        justify-items: end;
    }
}

/*.hero {*/
/*    background: url("../images/hero-image-EMxMYFJ.jpg");*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    object-position: 35% center;*/
/*}*/

.bi {
    vertical-align: -.125em;
    fill: currentColor
}

/** Offcanvas **/

/*@media (max-width: 991.98px) {*/
/*    .offcanvas-collapse {*/
/*        position: fixed;*/
/*        top: var(--app-navbar-min-height);*/
/*        bottom: 0;*/
/*        left: 100%;*/
/*        width: 100%;*/
/*        padding-right: 1rem;*/
/*        padding-left: 1rem;*/
/*        overflow-y: auto;*/
/*        visibility: hidden;*/
/*        background-color: #343a40;*/
/*        transition: transform .3s ease-in-out, visibility .3s ease-in-out;*/
/*    }*/
/*    .offcanvas-collapse.open {*/
/*        visibility: visible;*/
/*        transform: translateX(-100%);*/
/*    }*/
/*}*/
/** End Offcanvas **/

/** Nav Scroller **/

/* Make the wrapper scroll horizontally */
.nav-scroller {
    overflow-x: auto;
}

/* Keep the breadcrumb on one line and scrollable */
.nav-scroller .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    --bs-breadcrumb-padding-x: 1.2rem;
    --bs-breadcrumb-padding-y: 1rem;
    --bs-breadcrumb-item-padding-x: .5rem;
    --bs-breadcrumb-margin-bottom: 0;
    --bs-breadcrumb-item-active-color: var(--bs-white);
}

/* Prevent items from squishing */
.nav-scroller .breadcrumb-item {
    display: flex;
    align-items: center;
}

/* Fix the divider overlapping by removing the float */
.nav-scroller .breadcrumb-item + .breadcrumb-item::before {
    float: none;
    padding-right: 0;
    content: "";
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 .5rem 0 0;
    background-image: var(--bs-breadcrumb-divider);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/** End Nav Scroller **/

/** Carousel **/
.carousel-full {
    height: calc(100vh - 132px);
    .carousel-item {
        height: 100%;
    }
}
.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}
@media (min-width: 40em) {
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }
}
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

/** End Carousel **/

/** Section Pin **/
@supports(animation-timeline: view()) {

    @keyframes move {
        to {
            /* Move horizontally so that right edge is aligned against the viewport */
            transform: translateX(calc(-100% + 100vw));
        }
    }

    #sectionPin {
        /* Stretch it out, so that we create room for the horizontal scroll animation */
        height: 500vh;
        overflow-x: visible; /* To make position sticky work … */
        display: flex;
        view-timeline-name: --section-pin-tl;
        view-timeline-axis: block;
    }

    .pin-wrap-sticky {
        /* Stick to Top */
        height: 100vh;
        width: 100vw;
        position: sticky;
        top: 0;
        overflow-x: hidden;
    }

    .pin-wrap {
        height: 100vh;
        width: 250vmax;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 0 0 5vw;

        /* Hook animation */
        will-change: transform;
        animation: linear move forwards;

        /* Link animation to view-timeline */
        animation-timeline: --section-pin-tl;
        animation-range: contain 0% contain 100%;

        img {
            height: 100vh;
            width: auto;
            max-width: 100%;
            object-fit: cover;
        }

        > * {
            min-width: 60vmax;
            padding: 0 0 0 2vmax;
        }
    }
}
/** End Section Pin **/

@scroll-timeline nav-fade-timeline {
    scroll-source: body;
    orientation: landscape;
    range: auto;
}

@keyframes fadeNav {
    from { background-color: rgba(33, 37, 41, 0); }
    to { background-color: rgba(33, 37, 41, 1); }
}

.categories hgroup {
    display: flex;
    flex-direction: column-reverse;
}

.categories h2 {
    border-top: 1px solid rgba(33, 37, 31, .25);
    border-bottom: 1px solid rgba(33, 37, 31, .25);
    padding: 1rem .5rem;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.categories ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

@media (min-width: 576px) {
    .categories ul {
        grid-template-columns: repeat(2, 1fr);   /* tablet: 2 columns */
    }
}

@media (min-width: 768px) {
    .categories ul {
        grid-template-columns: repeat(3, 1fr);   /* desktop: 3 columns */
    }
}

.products h1 {
    font-size: 2.25rem;
    font-weight: 400;
    margin: 2rem 0;
}

/* Closed state */
#sidebarMenu [data-bs-toggle="collapse"] .btn-icon {
    display: inline-block;
    transition: transform .2s ease;
}

/* When the collapse is open */
#sidebarMenu [aria-expanded="true"] .btn-icon {
    transform: rotate(90deg);   /* clockwise */
}

[popover] {
    max-width: min(80rem, 130vw);
    max-height: 80vh;
    overflow: auto;
}

[popover]:popover-open {
    position: fixed;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 50;
}

[popover]::backdrop {
    background: rgba(15, 23, 42, 0.55);
}

.custom-list {
    list-style: none; /* Removes default bullets */
    padding-left: 1rem;
}

.custom-list li::before {
    content: "\003E"; /* Or use Unicode: content: '\003E'; */
    font-weight: bold;
    color: #0d6efd; /* Bootstrap primary color example */
    display: inline-block;
    width: 1em; /* Space between bullet and text */
    margin-left: -1em; /* Adjusts positioning */
}

.two-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: clamp(32px, 6vw, 96px);
}

.two-col-links li {
    break-inside: avoid;
    font-size: 1.25rem;
}

.two-col-links a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 2px;
}

.two-col-links a:hover {
    text-decoration-thickness: 3px;
}

.list-variation {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-variation li {
    position: relative;
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 20px;
    padding-inline: 1.25rem;
}

.list-variation li::before {
    content: "•";
    position: absolute;
    transform: translateX(calc(-50% - .65rem));
    top: .35em;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.list-variation.list-primary {
    color: var(--bs-body-color);
}

.list-variation.list-primary li::before {
    color: var(--bs-primary);
}

.list-variation.list-info {
    color: #fff;
}

.list-variation.list-info li::before {
    color: #ffc107;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.w-60 {
    width: 60%;
}

.vr-inline-list {
    opacity: 100;
    width: 2px;
    height: 1.1rem;
}

.wrap-title {
    white-space: nowrap;
}

.list-2-col-force {
    column-count: 2;
}

@media (min-width: 992px) {
    .list-variation li {
        text-align: left;
    }

    .vr-inline-list {
        height: 1.3rem;
    }

    .list-2-col {
        column-count: 2;
    }

    .list-3-col {
        column-count: 3;
    }

    .list-2-col li, .list-3-col li {
        break-inside: avoid;
    }

    .wrap-title {
        white-space: normal;
        max-width: 10ch;
        text-wrap: balance;
    }
}

/*@media (max-width: 900px) {*/
/*    .two-col-links {*/
/*        column-count: 1;*/
/*    }*/
/*}*/
