:root {
    --bolder-weight: 700;
    --color-dark: #121216;
    --color-dark-shadow: #353535;
    --color-light: #f1f1f1;
    --color-red: #c20000;
    --color-muted: #807a84;
    --color-scrollbar: #ccc;
    --color-highlight: 244, 2, 2;
    --color-menu-active: 125, 125, 125;
    --border-transparency: 0.5;
    --bg-transparency: 0.2;
    --color-menu-text: rgba(255, 255, 255, 0.55);
    --color-menu-text-hover: rgba(255, 255, 255, 0.75);
    --color-menu-text-active: rgba(255, 255, 255, 1);
}

*::selection {
    background: var(--color-red);
    color: var(--color-light);
    text-shadow: var(--color-dark) 0px 0px 5px;
}

*::-moz-selection {
    background: var(--color-red);
    color: var(--color-light);
    text-shadow: var(--color-dark) 0px 0px 5px;

}

*::-webkit-selection {
    background: var(--color-red);
    color: var(--color-light);
    text-shadow: var(--color-dark) 0px 0px 5px;

}



body,
html {
    font-size: 16px;
    hanging-punctuation: first last;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    background-color: var(--color-dark);
    color: var(--color-light);
    font-family: 'Space Grotesk', Verdana, sans-serif;
    font-weight: 300;
}

footer {
    margin-top: auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p:hover,
span:hover,
li:hover,
em:hover,
i:hover,
strong:hover,
b:hover {
    /* font-variation-settings: "wght" var(--bolder-weight); */
}



.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw);
}

.display-1 {
    /* calc(1.375rem + 5.5vw);*/
    font-size: clamp(1.375rem, 1.375rem+5.5vw, 3.5rem);
}

p {
    text-wrap: pretty;
}

p:last-child {
    margin-bottom: 0;
}

.fw-100 {
    font-weight: 100;
    --bolder-weight: 200;
}

.fw-200 {
    font-weight: 200;
    --bolder-weight: 300;
}

.fw-300 {
    font-weight: 300;
    --bolder-weight: 400;
}

.fw-400 {
    font-weight: 400;
    --bolder-weight: 500;
}

.fw-500 {
    font-weight: 500;
    --bolder-weight: 600;
}

.fw-600 {
    font-weight: 600;
    --bolder-weight: 700;
}

.fw-700,
.fw-bold,
strong,
b {
    font-weight: 700;
    --bolder-weight: 800;
}

.fw-800 {
    font-weight: 800;
    --bolder-weight: 900;
}

.fw-900 {
    font-weight: 900;
    --bolder-weight: 900;
}

.text-danger,
.text-red {
    color: var(--color-red) !important;
}

.underscore-red {
    border-bottom: 4px solid var(--color-red);
    display: inline-block;
    padding-bottom: 0.2rem;
}

.btn-danger {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-light);
}

.btn-outline-danger {
    background-color: transparent;
    border-color: #ff0000;
    color: #ff0000;
}

.btn-outline-danger:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-light);
}

.btn-outline-warning {
    background-color: transparent;
    border-color: #707070;
    color: #ccc;
}

.btn-outline-warning:hover {
    background-color: #707070;
    border-color: #707070;
    color: var(--color-light);
}

.row-muted {
    opacity: 0.5;
}

.selected-product {
    border-color: var(--color-red);
    box-shadow: 0 0 10px var(--color-red);
}

.alert svg {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
    vertical-align: -0.25em;
}

#liveAlertPlaceholder {
    z-index: 15451;
}

.small {
    font-size: 0.875em;
}

.text-muted {
    color: var(--color-muted) !important;
}

form {
    max-width: 800px;
    margin: auto;
}

svg[class^='icon-'] {
    width: 1.3em;
    height: 1.3em;
    fill: currentColor;
    vertical-align: -0.25em;
}

svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.z15 {
    z-index: 1599;
}
/*
body::-webkit-scrollbar {
    width: 1rem;
}

body::-webkit-scrollbar-track {
    background: #1e1e24;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar)
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-scrollbar)
}

body::-webkit-scrollbar-thumb:active {
    background: var(--color-scrollbar)
} */



.lr-logo {
    max-width: 200px;
    width: 100%;
    min-width: 100px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.lr-logo-sm {
    max-width: 120px;
    width: 100%;
}

.bg-dark {
    background-color: var(--color-dark) !important;
    color: var(--color-light);
}

.btn-download {
    border-radius: .32rem;
    font-size: .875rem;
    padding: 0.3rem 0.9rem !important;
    background-color: transparent;
    border: 1px solid rgba(var(--color-highlight), var(--border-transparency));
    background-color: rgba(var(--color-highlight), var(--bg-transparency));
    color: var(--color-light) !important;
    text-decoration: none !important;
}

.btn-download:hover {
    background-color: rgba(var(--color-highlight), 0.7);
    border: 1px solid rgba(var(--color-highlight), 0.7);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}


.btn-default {
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(var(--color-menu-active), var(--border-transparency));
    background-color: rgba(var(--color-menu-active), var(--bg-transparency));
    border-radius: .375rem;
}

.btn-default:hover {
    background-color: rgba(var(--color-menu-active), 0.7);
}

.hero-video.gradient-overlay::before {
    content: "";
    z-index: 5;
    background-image: linear-gradient(to bottom, #292833, #fff0 25%), linear-gradient(to bottom, #1f1e26, #d2d1e9 40%, #d2d1e9 70%, #1f1e26);
    mix-blend-mode: multiply;
    position: absolute;
    inset: 0%;
}

.hero-video {
    position: relative;
    flex: 1;
    min-height: 90vh;
    overflow: hidden;
    z-index: 1;
}

/* Video fills the screen */
.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Optional dark overlay for readability */
.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-video .menu-grid {
    position: absolute;
    left: 50%;
    /* bottom: 50%;
    transform: translate(-50%, 50%); */
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 1533;
}

/* @media (max-width: 768px) {
    .hero-video .menu-grid {
        bottom: 20px;
        transform: translate(-50% 0);
    }
} */

/* Content above video */
.hero-content {
    position: relative;
    z-index: 1533;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    margin-top: clamp(2rem, 15vh, 30%);
}

/* Content above video */
.maintenance-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff !important;
    z-index: 1554;
}

/* infinite scroll trusted by logos without jumping to start */
#trustedBy {
    overflow: hidden;
    background-color: var(--color-dark);
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
}

.trust-scroll {
    display: flex;
    width: max-content;
    animation: scroll-left 60s linear infinite;
    will-change: transform;
}

.scroll-track {
    display: flex;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

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

.trust-scroll:hover {
    animation-play-state: paused;
}

.img-trustedby {
    max-height: 60px;
    margin: 0 1rem;
    flex-shrink: 0;
}

/**/
*,
:after,
:before {
    box-sizing: border-box;
}


.block-grid {
    gap: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.card-block {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
    border-radius: .375rem;
    padding: 1.75rem;
    color: hsl(201, 6%, 63%);
    position: relative;
    z-index: 1;
    width: calc(50% - 25px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(hsl(240, 10%, 16%) 32.29%, #13171a 137.5%), #212629;
    pointer-events: none;
    z-index: -10;
    border-radius: .375rem;
}

.card-block:before {
    content: "";
    z-index: -12;
    background: linear-gradient(181deg, #535353 -38%, #212629 68%), #212629;
    border-radius: .5rem;
    width: calc(100% + 3px);
    height: 100%;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    position: absolute;
    top: -1.5px;
    left: -1.5px;
}



figure {
    background-color: rgba(24, 30, 35, 1);
    border-radius: .375rem;
    margin: 0;
    max-width: fit-content;
}

img.coop-shadow {
    transition: all 0.3s ease-in-out;
    opacity: .9;
}

img.coop-shadow:hover {
    transform: scale(1.09);
    opacity: 1;
    /* -webkit-filter: drop-shadow(0 0 15px #555);
    filter: drop-shadow(0 0 15px #555); */
}

.coop-images {
    width: 12%;
    aspect-ratio: 4/3;
    object-fit: contain;
    /* mix-blend-mode: color-burn; */
}

footer {
    padding-top: 90px;
}

@media (max-width: 575.98px) {

    body,
    html {
        font-size: 14px;
    }

    .img-trustedby {
        max-height: 40px;
        margin: 0 0.5rem;
    }

    footer {
        padding-top: 60px;
    }

    .coop-images {
        width: 20%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {

    body,
    html {
        font-size: 16px;
    }

    .coop-images {
        width: 16%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (min-width: 1200px) and (max-width: 1399.98px) {}

@media (min-width: 1540px) {
    .container-fluid {
        max-width: 1540px;
        margin-left: auto;
        margin-right: auto;
    }
}



@media (max-width: 768px) {
    .block-grid {
        flex-direction: column;
        align-items: center;
    }

    .card-block {
        width: 100%;
    }
}