/* LUTs Manager single-purpose stylesheet. */

:root {
    --lm-nav-height: 80px;
    --lm-page-width: min(78vw, 1220px);
    --lm-line: rgba(255, 255, 255, 0.12);
    --lm-copy: rgba(210, 210, 210, 0.66);
    --lm-muted: rgba(210, 210, 210, 0.42);
    --lm-blue: #008cff;
    --lm-cyan: #31c2f5;
    --lm-red: #ff3434;
    --lm-yellow: #ffc30f;
    --lm-white: #d7d7d7;
    --font-xl: clamp(4.1rem, 8vw, 8rem);
    --font-md: clamp(1rem, 1.5vw, 1.5rem);
    --font-sm: clamp(0.72rem, 1vw, 1rem);
}

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

html {
    overflow-x: hidden;
    background: #000;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: #000;
    color: var(--lm-white);
    font-family: "Inter", Arial, sans-serif;
}

body.nav-active {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

body::-webkit-scrollbar-track {
    background: #070707;
}

body::-webkit-scrollbar-thumb {
    background: #181818;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
canvas,
video {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

section[id] {
    scroll-margin-top: calc(var(--lm-nav-height) + 14px);
}

.js-scroll {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    overflow: visible;
    will-change: transform;
}

#fluid {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.86;
}

.lines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.animatedLine {
    position: fixed;
    top: 0;
    width: 1px;
    height: 100vh;
    overflow: hidden;
    background: rgba(226, 226, 226, 0.04);
    opacity: 0.5;
}

.animatedLine:nth-child(1) {
    left: 0;
    background: transparent;
}

.animatedLine:nth-child(2) {
    left: 33%;
}

.animatedLine:nth-child(3) {
    left: 66%;
}

.animatedLine:nth-child(4) {
    left: 99.95%;
    background: transparent;
}

.animatedLine::after {
    content: "";
    position: absolute;
    top: -38%;
    left: 0;
    width: 1px;
    height: 32vh;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: line-drop 7s linear infinite;
}

.animatedLine:nth-child(1)::after {
    animation-delay: -3s;
}

.animatedLine:nth-child(2)::after {
    animation-delay: -1.2s;
}

.animatedLine:nth-child(3)::after {
    animation-delay: -4.8s;
}

.animatedLine:nth-child(4)::after {
    animation-delay: -2.1s;
}

@keyframes line-drop {
    to {
        transform: translateY(140vh);
    }
}

.container,
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}

.container {
    max-width: 1200px;
}

.row {
    --gutter-x: 1.5rem;
    --gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-0.5 * var(--gutter-x));
    margin-left: calc(-0.5 * var(--gutter-x));
}

.row > * {
    width: 100%;
    max-width: 100%;
    margin-top: var(--gutter-y);
    padding-right: calc(0.5 * var(--gutter-x));
    padding-left: calc(0.5 * var(--gutter-x));
}

.g-5 {
    --gutter-x: 3rem;
    --gutter-y: 3rem;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.666%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}

.flex-column {
    flex-direction: column;
}

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

.justify-content-center {
    justify-content: center;
}

.justify-content-around {
    justify-content: space-around;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.w-65 {
    width: 65%;
}

.overflow-hidden {
    overflow: hidden;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.bottom-150px {
    bottom: 150px;
}

.left-70px {
    left: 70px;
}

.right-100px {
    right: 100px;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-4 {
    z-index: 4;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-5 {
    padding-top: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.p-5 {
    padding: 3rem;
}

.p-15 {
    padding: 15%;
}

.p-20 {
    padding: 20%;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pt-15px {
    padding-top: 15px;
}

.pb-15px {
    padding-bottom: 15px;
}

.text-center {
    text-align: center;
}

.align-middle {
    vertical-align: middle;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.font-large {
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.2;
}

.font-small {
    font-size: var(--font-sm);
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15 {
    font-size: 0.94rem;
}

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

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

.text-uppercase {
    text-transform: uppercase;
}

.text-decoration-line-bottom,
.text-decoration-line-bottom-medium {
    border-bottom: 1px solid currentColor;
}

.full-screen {
    min-height: 100vh;
}

.cover-background {
    background-size: cover;
}

.background-position-left-top {
    background-position: left top;
}

.abs {
    position: absolute;
}

.T-20 {
    top: -20%;
}

.T-4 {
    top: -4%;
}

.T16 {
    top: 16%;
}

.T20 {
    top: 20%;
}

.T25 {
    top: 25%;
}

.T36 {
    top: 36%;
}

.T56 {
    top: 56%;
}

.T65 {
    top: 65%;
}

.L23 {
    left: 23%;
}

.L30 {
    left: 30%;
}

.L31 {
    left: 31%;
}

.L40 {
    left: 40%;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}

h1 {
    color: var(--lm-white);
    font-size: var(--font-xl);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
}

p {
    color: rgb(164, 164, 164);
    font-size: var(--font-md);
    font-weight: 200;
    line-height: 1.2;
}

.boldText {
    font-weight: 800;
}

.underlineText {
    text-decoration: underline;
    text-underline-offset: 0.55rem;
}

.boxedText {
    display: inline-block;
    padding: 1% 2%;
    background: var(--lm-white);
    color: #000;
    font-size: var(--font-sm);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.outlinedText {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--lm-white);
}

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--lm-nav-height);
    min-height: var(--lm-nav-height);
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px) saturate(130%);
}

.navbar .logo {
    flex: 0 0 225px;
}

.navbar .logo img {
    width: auto;
    height: 40px;
}

.nav-links {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.nav-links a {
    position: relative;
    margin: 0 clamp(10px, 1vw, 18px);
    padding: 10px 0;
    color: #949494;
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
    transition: color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links #indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    transition: left 520ms cubic-bezier(0.22, 1, 0.36, 1), width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a::before,
.nav-links a::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    transform: translateY(150%) scale(0);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), background 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    transform: translateY(0) scale(1);
}

.nav-links a::before {
    top: -5px;
    left: -10px;
    width: 6px;
    height: 6px;
}

.nav-links a::after {
    top: 0;
    left: -2.5px;
    width: 4px;
    height: 4px;
}

.nav-links .nav-link:nth-child(1)::before,
.nav-links .nav-link:nth-child(4)::before {
    background: var(--lm-yellow);
}

.nav-links .nav-link:nth-child(1)::after,
.nav-links .nav-link:nth-child(3)::before {
    background: #ff1f3b;
}

.nav-links .nav-link:nth-child(2)::before,
.nav-links .nav-link:nth-child(3)::after,
.nav-links .nav-link:nth-child(4)::after,
.nav-links .nav-link:nth-child(5)::before {
    background: var(--lm-cyan);
}

.nav-links .nav-link:nth-child(2)::after {
    background: var(--lm-yellow);
}

.nav-links .nav-link:nth-child(5)::after {
    background: #ff1f3b;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
}

.hamburger .circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hamburger .circle:nth-child(1) {
    background: var(--lm-yellow);
}

.hamburger .circle:nth-child(2) {
    background: var(--lm-cyan);
}

.hamburger .circle:nth-child(3) {
    background: #ff1f3b;
}

.hamburger.active .circle {
    filter: grayscale(0%);
}

.btn-roll {
    position: relative;
    display: inline-flex;
    flex: 0 0 120px;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 36px;
    margin-right: 20px;
    overflow: hidden;
    border: 1px solid rgb(219, 219, 219);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.26);
    color: rgb(219, 219, 219);
    font-size: 0.78rem;
    user-select: none;
    transition: border-color 560ms cubic-bezier(0.22, 1, 0.36, 1), background 560ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-roll-label-up,
.btn-roll-label-down {
    position: absolute;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-roll-label-up {
    transform: translateY(0);
}

.btn-roll-label-down {
    opacity: 0;
    transform: translateY(120%);
}

.btn-roll:hover {
    border-color: var(--lm-blue);
    background: var(--lm-blue);
    box-shadow: 0 0 20px rgba(0, 140, 255, 0.7);
    color: #fff;
}

.btn-roll:hover .btn-roll-label-up {
    opacity: 0;
    transform: translateY(-120%);
}

.btn-roll:hover .btn-roll-label-down {
    opacity: 1;
    transform: translateY(0);
}

.mobile-full-access-link {
    display: none;
}

.responsive-section {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--lm-white);
}

.responsive-inner {
    position: relative;
    width: min(80vw, 1200px);
    aspect-ratio: 16 / 9;
}

#home {
    min-height: clamp(760px, 100vh, 1040px);
    padding-top: var(--lm-nav-height);
    overflow: hidden;
}

#home .responsive-inner {
    z-index: 6;
    pointer-events: none;
}

.atropos {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: -15%;
    perspective: 1200px;
    transform: translate(0, -15vh);
}

.atropos-scale,
.atropos-rotate,
.atropos-inner {
    display: block;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1800ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.atropos-inner {
    position: relative;
    overflow: visible;
}

.inlineimages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.atropos-imageSize {
    position: relative;
    height: auto;
    margin-top: 50%;
    margin-left: 50%;
    filter: brightness(30%);
    transition:
        filter 1800ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 1800ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

[data-atropos-offset] {
    transition: transform 1800ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.left-image {
    z-index: 4;
    width: 60%;
    margin-top: 55%;
    margin-left: 85%;
}

.center-image {
    z-index: 1;
    width: 100%;
    margin-top: -20%;
    margin-left: 30%;
    filter: brightness(20%);
}

.right-image {
    z-index: 4;
    width: 120%;
    margin-top: -10%;
    margin-left: 50%;
}

.right-bottom-image {
    width: 100%;
    margin-top: 200%;
    margin-left: -20%;
}

.left-image:hover,
.center-image:hover,
.right-image:hover,
.right-bottom-image:hover {
    filter: brightness(55%);
}

.titlecontainer {
    min-height: clamp(620px, 100vh, 980px);
}

.titlecontainer .container-fluid {
    max-width: none;
    margin: 0;
    padding: clamp(70px, 12vh, 132px) clamp(6vw, 10vw, 14vw) !important;
}

.titlecontainer .row {
    align-items: center;
    justify-content: center !important;
    height: 100%;
}

.titlecontainer .col-md-12 {
    max-width: 100%;
    margin-left: 0;
    text-align: left !important;
}

.titlecontainer .font-large {
    font-size: clamp(2.7rem, 4.4vw, 5.2rem);
    line-height: 1.2;
    letter-spacing: 0;
}

.titlecontainer .entry-title {
    --title-highlight-width: 0%;
    --title-highlight-scale: 0;
    position: relative;
    display: inline-block;
    padding: 0 0.18em;
    overflow: hidden;
    color: rgba(215, 215, 215, 0.62) !important;
    white-space: nowrap;
    isolation: isolate;
}

.titlecontainer .entry-title::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(215, 215, 215, 0.9);
    transform: scaleX(var(--title-highlight-scale));
    transform-origin: left center;
    transition: transform 80ms linear;
}

.titlecontainer .entry-title::after {
    content: attr(data-highlight-text);
    position: absolute;
    inset: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 0 0.18em;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.96);
    white-space: nowrap;
    clip-path: inset(0 calc(100% - var(--title-highlight-width)) 0 0);
    transition: clip-path 80ms linear;
    pointer-events: none;
}

.titlecontainer .entry-title-static {
    color: rgba(218, 218, 218, 0.94);
}

.titlecontainer .title-secondary-static {
    opacity: var(--title-secondary-opacity, 0.42);
}

.titlecontainer .title-primary-line {
    margin-bottom: clamp(42px, 6vh, 86px);
}

.titlecontainer .title-secondary-line {
    margin-top: clamp(118px, 12.8vh, 210px);
}

.title-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.6;
    pointer-events: none;
    animation: title-particle-float 6s ease-in-out infinite;
}

@keyframes title-particle-float {
    50% {
        transform: translateY(-16px);
        opacity: 1;
    }
}

#features {
    min-height: clamp(860px, 118vh, 1240px);
    padding-top: clamp(112px, 13vh, 176px);
    padding-bottom: clamp(106px, 13vh, 168px);
}

#features .container-fluid {
    width: min(86vw, 1480px) !important;
}

#features .row,
.features-atropos-grid {
    align-items: center;
    row-gap: clamp(58px, 7vh, 96px);
    transform-style: preserve-3d;
}

.features-atropos {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin: 0;
    perspective: 1650px;
    transform: none;
}

.features-atropos,
.features-atropos-grid,
#features .portfolio-box,
#features .portfolio-image {
    pointer-events: auto;
}

.features-atropos > .atropos-scale,
.features-atropos > .atropos-scale > .atropos-rotate,
.features-atropos > .atropos-scale > .atropos-rotate > .atropos-inner {
    display: block;
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 3200ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.features-atropos > .atropos-scale > .atropos-rotate > .atropos-inner {
    overflow: visible;
}

.features-atropos [data-atropos-offset] {
    transition: transform 3200ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#features .col-6 {
    flex: 0 0 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    padding: clamp(22px, 3.1vw, 54px) !important;
}

#features .portfolio-box {
    position: relative;
    z-index: 1;
    transform: translateZ(0) scale(1);
    transform-origin: center;
    transition:
        transform 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, filter;
}

#features .col-6:hover .portfolio-box,
#features .portfolio-box:hover {
    z-index: 8;
}

#features .portf1 {
    top: -2.5vh;
    left: -2.4vw;
}

#features .portf2 {
    top: 3.2vh;
    left: 0;
}

#features .portf3 {
    top: -1.4vh;
    right: -2.4vw;
}

#features .portf4 {
    top: 3.8vh;
    left: -1.6vw;
}

#features .portf5 {
    top: -1.8vh;
    left: 0.4vw;
}

#features .portf6 {
    top: 4.2vh;
    right: -1.8vw;
}

#features .portf7 {
    top: 1.4vh;
    left: -2vw;
}

#features .portf8 {
    top: 2.8vh;
    right: -1.2vw;
}

.portfolio-image {
    position: relative;
    display: inline-block;
    overflow: visible;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: none;
    will-change: transform;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    opacity: 1;
    filter: brightness(64%);
    transform: translateZ(0) scale(1.012);
    transition:
        filter 2400ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 2400ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, filter;
}

.features-atropos .portfolio-image img[data-atropos-offset] {
    transition:
        filter 2400ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 3200ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#features .portfolio-image:hover img,
#features .portfolio-image.is-feature-hovered img {
    filter: brightness(108%) !important;
}

.portfolio-caption {
    color: rgba(210, 210, 210, 0.62);
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
    transition:
        color 3600ms cubic-bezier(0.19, 1, 0.22, 1),
        text-shadow 3600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.features-atropos .portfolio-caption[data-atropos-offset] {
    transition:
        transform 3200ms cubic-bezier(0.19, 1, 0.22, 1),
        color 3600ms cubic-bezier(0.19, 1, 0.22, 1),
        text-shadow 3600ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#features .portfolio-image:hover .portfolio-caption,
#features .portfolio-image.is-feature-hovered .portfolio-caption {
    color: rgba(250, 250, 250, 0.9) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

#manager {
    min-height: clamp(760px, 100vh, 1050px);
    overflow: hidden;
}

#manager .container {
    max-width: 100%;
}

#manager .row.p-20 {
    min-height: clamp(760px, 100vh, 1050px);
    padding: clamp(92px, 12vh, 140px) 6vw !important;
}

#manager .mainImageAppDemo {
    width: min(25vw, 420px) !important;
    max-height: 82vh;
    object-fit: contain;
    backface-visibility: hidden;
    transform-origin: center;
    will-change: transform, filter;
}

.brandsImageDemoR {
    position: absolute;
    top: 44%;
    left: 62%;
    width: min(28vw, 520px);
    transform-origin: center;
    will-change: transform, filter;
}

.brandsImageDemoL {
    position: absolute;
    top: 44%;
    left: 14%;
    width: min(27vw, 500px);
    transform-origin: center;
    will-change: transform, filter;
}

.scroll-container {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    animation: fadeInOut 2s infinite ease-in-out;
}

.scroll-arrow {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 30px;
    height: 50px;
    margin-top: -120px;
    border-radius: 50px;
}

.arrow-down {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: moveDown 2s infinite ease-in-out;
}

@keyframes moveDown {
    0%,
    100% {
        transform: translateY(0) rotate(38deg);
    }

    50% {
        transform: translateY(10px) rotate(52deg);
    }
}

@keyframes fadeInOut {
    50% {
        opacity: 0.6;
    }
}

#LUTsPro {
    position: relative;
    display: grid;
    min-height: clamp(760px, 92vh, 960px);
    height: clamp(760px, 92vh, 960px);
    padding: 0;
    overflow: hidden;
    place-items: center;
}

#LUTsPro .responsive-inner {
    position: absolute !important;
    top: clamp(128px, 16vh, 190px);
    left: clamp(0px, 1vw, 18px);
    z-index: 6;
    width: min(80vw, 1200px);
    aspect-ratio: 16 / 9;
    pointer-events: none;
    will-change: transform, filter;
}

#LUTsPro .responsive-inner h1,
#LUTsPro .responsive-inner p {
    text-shadow: 0 18px 54px rgba(0, 0, 0, 0.72);
}

#LUTsPro .responsive-inner p:not(.boxedText) {
    max-width: 48vw;
}

#LUTsPro .imagesBanner {
    position: absolute;
    top: clamp(116px, 16vh, 180px);
    left: 50%;
    z-index: 2;
    width: min(73vw, 1120px);
    max-width: calc(100vw - 32px);
    overflow: visible;
    will-change: transform, filter;
}

#LUTsPro .imagesBannerImage {
    width: 100%;
}

.filtered-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --mask-radius: 0px;
    filter: brightness(55%) grayscale(100%);
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), transparent 0, transparent var(--mask-radius), #000 calc(var(--mask-radius) + 1px), #000 100%);
    mask-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), transparent 0, transparent var(--mask-radius), #000 calc(var(--mask-radius) + 1px), #000 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.pricing-section {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: clamp(720px, 92vh, 960px);
    padding: clamp(68px, 7.2vh, 96px) 0 clamp(56px, 6.5vh, 84px);
    row-gap: clamp(30px, 4vh, 48px);
    overflow: hidden;
    color: var(--lm-white);
}

.pricing-heading,
.pricing-grid {
    width: min(72vw, 1080px);
    margin-right: auto;
    margin-left: auto;
}

.pricing-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    will-change: transform, filter;
}

.pricing-heading h2 {
    color: var(--lm-white);
    font-size: clamp(2.45rem, 3.3vw, 4.05rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0;
}

.pricing-heading p {
    margin-top: 8px;
    color: rgba(210, 210, 210, 0.42);
    font-size: clamp(0.92rem, 1.02vw, 1.24rem);
}

.pricing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
    gap: clamp(22px, 2.8vw, 38px);
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 382px;
    padding: clamp(20px, 1.8vw, 30px);
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 6px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.004) 42%),
        rgba(4, 4, 4, 0.68);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.32);
    transition: border-color 620ms cubic-bezier(0.22, 1, 0.36, 1), background 620ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, filter;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    opacity: 0.58;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 36%);
    pointer-events: none;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card-featured {
    border-color: rgba(0, 140, 255, 0.55);
    background:
        radial-gradient(circle at 82% 0%, rgba(0, 140, 255, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.006) 42%),
        rgba(4, 6, 8, 0.72);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card-featured:hover {
    border-color: rgba(0, 140, 255, 0.72);
}

.pricing-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
}

.pricing-card h3 {
    color: var(--lm-white);
    font-size: clamp(1.48rem, 1.65vw, 2.16rem);
    font-weight: 800;
    line-height: 1.05;
}

.pricing-card-header span {
    color: rgba(210, 210, 210, 0.46);
    font-size: 0.74rem;
    font-weight: 800;
}

.pricing-price {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: baseline;
    margin-top: 12px;
    color: var(--lm-white);
    font-size: clamp(1.9rem, 2.28vw, 2.95rem);
    font-weight: 900;
    line-height: 0.98;
}

.original-price {
    position: relative;
    color: rgba(210, 210, 210, 0.48);
    font-size: clamp(1.18rem, 1.55vw, 1.95rem);
}

.original-price::after {
    content: "";
    position: absolute;
    top: 54%;
    right: -4px;
    left: -4px;
    height: 3px;
    background: rgba(210, 210, 210, 0.62);
    transform: rotate(-6deg);
}

.discounted-price {
    color: var(--lm-red);
}

.pricing-copy {
    max-width: 620px;
    margin-top: 10px;
    color: rgba(210, 210, 210, 0.55);
    font-size: clamp(0.82rem, 0.86vw, 0.98rem);
    line-height: 1.35;
}

.pricing-list {
    display: grid;
    gap: 7px;
    margin: clamp(18px, 2.2vh, 28px) 0 clamp(24px, 3vh, 38px);
    padding: 0;
    color: rgba(210, 210, 210, 0.68);
    font-size: clamp(0.78rem, 0.82vw, 0.92rem);
    line-height: 1.45;
    list-style: none;
}

.pricing-list li {
    position: relative;
    padding-left: 24px;
}

.pricing-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--lm-cyan);
    font-weight: 900;
}

.pricing-list .not-included {
    color: rgba(210, 210, 210, 0.32);
}

.pricing-list .not-included::before {
    content: "x";
    color: var(--lm-red);
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 280px);
    min-height: 40px;
    margin-top: auto;
    border-radius: 5px;
    color: var(--lm-white);
    font-size: 0.84rem;
    font-weight: 800;
    transition: border-color 560ms cubic-bezier(0.22, 1, 0.36, 1), background 560ms cubic-bezier(0.22, 1, 0.36, 1), color 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 560ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.pricing-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: #000;
}

.pricing-button-primary {
    border: 1px solid var(--lm-blue);
    background: rgba(0, 140, 255, 0.82);
    color: #fff;
}

.pricing-button-primary:hover {
    background: var(--lm-blue);
}

.offer-badge {
    position: absolute;
    top: -18px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    background: #c6ff17;
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

footer.pb-0.cursorStyle-Fluid {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 4.4vh, 56px) 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.82);
}

footer .container {
    width: var(--lm-page-width);
    max-width: var(--lm-page-width);
    padding-right: 0;
    padding-left: 0;
}

footer .typewriterTextTitile {
    display: block;
    width: 100% !important;
    margin-bottom: clamp(18px, 2.6vh, 30px) !important;
    overflow: visible;
    white-space: normal;
}

footer .typewriterTextTitile .col-5 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
}

footer .typewriterTextTitile h5 {
    display: inline-block;
    max-width: 100%;
    min-height: 1.25em;
    color: rgba(210, 210, 210, 0.46) !important;
    font-size: clamp(1.1rem, 1.45vw, 1.8rem);
    font-weight: 400;
    line-height: 1.12;
    white-space: normal;
}

footer .typewriterTextTitile h5::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.8em;
    margin-left: 5px;
    background: rgba(255, 255, 255, 0.72);
    vertical-align: -0.08em;
    opacity: var(--footer-cursor-opacity, 1);
}

footer .typewriterTextTitile a {
    color: rgba(225, 225, 225, 0.9) !important;
}

footer .container:nth-of-type(2) > .row:first-child {
    display: grid;
    grid-template-columns: minmax(155px, 0.62fr) minmax(280px, 1.2fr) minmax(310px, 1fr);
    gap: clamp(18px, 3vw, 44px);
    align-items: center;
}

footer .container:nth-of-type(2) > .row:first-child > [class*="col-"] {
    flex: none;
    width: auto;
    max-width: none;
    margin: 0 !important;
    padding: 0;
}

footer .footer-logo img {
    max-height: 30px;
    margin-top: 0;
    filter: grayscale(100%);
}

footer span,
footer p,
footer a,
footer .d-inline-block {
    color: rgba(210, 210, 210, 0.52) !important;
}

footer span {
    margin-bottom: 5px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.04em;
}

footer .last-paragraph-no-margin p {
    display: none;
}

footer .last-paragraph-no-margin a {
    font-size: clamp(0.82rem, 0.88vw, 0.94rem);
}

footer .newsletter-style-02 {
    max-width: 260px;
}

footer form {
    position: relative;
}

footer input.form-control {
    width: 100%;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    background: #efefef;
    color: #111;
    font-size: 0.82rem;
}

footer .newsletter-style-02 .btn.submit {
    display: none;
}

footer .row.justify-content-center {
    justify-content: flex-start !important;
    margin-top: clamp(14px, 2vh, 24px);
}

footer .divider-style-03 {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    opacity: 0.45;
}

footer .row.justify-content-center .font-small {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
}

footer .row.justify-content-center p,
footer .row.justify-content-center a {
    color: rgba(210, 210, 210, 0.34) !important;
    font-size: 0.68rem;
}

footer.pb-0.cursorStyle-Fluid {
    padding: clamp(22px, 3vh, 38px) 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.94));
}

footer .container {
    width: min(78vw, 1120px);
    max-width: min(78vw, 1120px);
}

footer .typewriterTextTitile {
    margin-bottom: clamp(14px, 1.9vh, 24px) !important;
}

footer .typewriterTextTitile h5 {
    min-height: 1.2em;
    color: rgba(210, 210, 210, 0.5) !important;
    font-size: clamp(0.95rem, 1.18vw, 1.42rem);
    font-weight: 300;
    line-height: 1.16;
    white-space: normal;
}

footer .typewriterTextTitile a {
    color: rgba(232, 232, 232, 0.92) !important;
    font-weight: 700;
}

footer .container:nth-of-type(2) > .row:first-child {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(20px, 3.2vw, 54px);
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
}

footer .footer-logo img {
    max-height: 26px;
    opacity: 0.82;
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

footer .footer-logo:hover img {
    opacity: 1;
    filter: grayscale(35%);
}

footer .last-paragraph-no-margin span,
footer .last-paragraph-no-margin p,
footer .order-lg-4 > span,
footer .order-lg-4 .d-flex {
    display: none !important;
}

footer .last-paragraph-no-margin a {
    color: rgba(210, 210, 210, 0.62) !important;
    font-size: clamp(0.72rem, 0.78vw, 0.88rem);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

footer .last-paragraph-no-margin a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer .newsletter-style-02 {
    width: min(22vw, 270px);
    max-width: 270px;
    margin-bottom: 0 !important;
}

footer input.form-control {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(245, 245, 245, 0.92);
    font-size: 0.78rem;
    transition: border-color 720ms cubic-bezier(0.16, 1, 0.3, 1), background 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

footer input.form-control::placeholder {
    color: rgba(230, 230, 230, 0.42);
}

footer input.form-control:focus {
    border-color: rgba(49, 194, 245, 0.42);
    background: rgba(255, 255, 255, 0.11);
    outline: 0;
}

footer .row.justify-content-center {
    margin-top: clamp(12px, 1.5vh, 18px);
}

footer .row.justify-content-center .font-small {
    padding-top: 9px !important;
    padding-bottom: 0 !important;
}

footer .row.justify-content-center p,
footer .row.justify-content-center a {
    color: rgba(210, 210, 210, 0.28) !important;
    font-size: 0.62rem;
}

footer.site-footer {
    position: relative;
    padding: clamp(30px, 4.2vh, 54px) 0 clamp(10px, 1.6vh, 18px);
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px) saturate(130%);
}

.footer-shell {
    width: min(74vw, 1080px);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: clamp(42px, 10vw, 190px);
    align-items: start;
}

.footer-subscribe {
    min-width: 0;
}

.footer-subscribe .typewriterTextTitile {
    margin: 0 0 clamp(15px, 2.4vh, 24px) !important;
}

.footer-subscribe .typewriterTextTitile h5 {
    min-height: 1.24em;
    margin: 0;
    color: rgba(225, 225, 225, 0.64) !important;
    font-size: clamp(0.82rem, 1vw, 1.16rem);
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.footer-subscribe .typewriterTextTitile a {
    color: rgba(245, 245, 245, 0.96) !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.footer-subscribe .typewriterTextTitile a:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.footer-subscribe-form {
    display: flex;
    align-items: center;
    width: min(100%, 318px);
    height: 38px;
    padding: 0 4px 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.025);
    transition:
        border-color 800ms cubic-bezier(0.16, 1, 0.3, 1),
        background 800ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-subscribe-form:focus-within {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 0 16px rgba(49, 194, 245, 0.06);
}

.footer-subscribe-form input[type="email"] {
    min-width: 0;
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent !important;
    color: rgba(240, 240, 240, 0.92) !important;
    font-size: 0.68rem;
    box-shadow: none !important;
    appearance: none;
}

.footer-subscribe-form input[type="email"]::placeholder {
    color: rgba(220, 220, 220, 0.38);
}

.footer-subscribe-form input[type="email"]:focus,
.footer-subscribe-form input[type="email"]:valid {
    background: transparent !important;
    color: rgba(245, 245, 245, 0.96) !important;
    box-shadow: none !important;
}

.footer-subscribe-form input[type="email"]:-webkit-autofill,
.footer-subscribe-form input[type="email"]:-webkit-autofill:hover,
.footer-subscribe-form input[type="email"]:-webkit-autofill:focus {
    border: 0;
    -webkit-text-fill-color: rgba(245, 245, 245, 0.96);
    box-shadow: 0 0 0 1000px rgb(4, 4, 4) inset !important;
    caret-color: rgba(245, 245, 245, 0.96);
    transition: background-color 9999s ease-out;
}

.footer-submit-button {
    position: relative;
    width: 29px;
    height: 29px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transition:
        background 900ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-submit-button::before,
.footer-submit-button::after {
    content: "";
    position: absolute;
    display: block;
    transition:
        background 900ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-submit-button::before {
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(235, 235, 235, 0.74);
    border-right: 1px solid rgba(235, 235, 235, 0.74);
    transform: rotate(45deg);
}

.footer-submit-button::after {
    top: 14px;
    right: 10px;
    width: 13px;
    height: 1px;
    background: rgba(235, 235, 235, 0.74);
}

.footer-submit-button:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.28),
        0 0 14px rgba(49, 194, 245, 0.08);
}

.footer-submit-button:hover::before {
    border-color: rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
}

.footer-submit-button:hover::after {
    background: rgba(255, 255, 255, 0.95);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: clamp(28px, 4vw, 70px);
}

.footer-links div {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 8px clamp(12px, 1.6vw, 24px);
    align-items: center;
}

.footer-links span {
    grid-column: 1 / -1;
    color: rgba(230, 230, 230, 0.34);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-links a {
    position: relative;
    color: rgba(215, 215, 215, 0.46);
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.25;
    transition:
        color 760ms cubic-bezier(0.16, 1, 0.3, 1),
        text-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 48, 79, 0.65), rgba(49, 194, 245, 0.7), rgba(255, 214, 38, 0.62));
    opacity: 0;
    transition:
        opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 0 12px rgba(49, 194, 245, 0.12);
}

.footer-links a:hover::after {
    opacity: 0.52;
    box-shadow: 0 0 10px rgba(49, 194, 245, 0.14);
}

.footer-rule {
    width: 100%;
    height: 1px;
    margin: clamp(24px, 3.8vh, 42px) 0 clamp(10px, 1.5vh, 16px);
    background: rgba(255, 255, 255, 0.105);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom .footer-logo img {
    max-height: 25px;
    opacity: 0.78;
    transition:
        opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-bottom .footer-logo:hover img {
    opacity: 1;
    filter: grayscale(20%);
}

.footer-bottom p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    color: rgba(210, 210, 210, 0.28);
    font-size: 0.58rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: right;
}

.footer-bottom a {
    color: rgba(210, 210, 210, 0.46);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition:
        color 760ms cubic-bezier(0.16, 1, 0.3, 1),
        text-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-bottom a:hover {
    color: rgba(245, 245, 245, 0.82) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.footer-bottom-separator {
    color: rgba(210, 210, 210, 0.18);
}

.scroll-progress {
    position: fixed;
    top: 50%;
    right: clamp(14px, 1.45vw, 28px);
    z-index: 90;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 146px;
    pointer-events: none;
    transform: translateY(-50%);
}

.scroll-progress .scroll-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(235, 235, 235, 0.48);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 10px;
    line-height: 1;
}

.scroll-progress .scroll-text {
    position: absolute;
    right: 8px;
    top: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-progress .scroll-line {
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 2px;
    height: 78px;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.scroll-progress .scroll-point {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 26px;
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(calc((78px - 26px) * var(--scroll-progress, 0)));
}

@media (max-width: 767px) {
    .scroll-progress {
        right: 8px;
        height: 112px;
        opacity: 0.72;
    }

    .scroll-progress .scroll-line {
        height: 58px;
    }

    .scroll-progress .scroll-point {
        height: 20px;
        transform: translateY(calc((58px - 20px) * var(--scroll-progress, 0)));
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-4 {
        order: 4;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-4 {
        order: 4;
    }

    .text-lg-end {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

@media (max-width: 1199px) {
    :root {
        --lm-page-width: min(88vw, 980px);
    }

    #home .atropos {
        transform: translate(0, -10vh);
    }

    .titlecontainer .font-large {
        font-size: clamp(2.35rem, 5.2vw, 4.6rem);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .pricing-card {
        min-height: auto;
    }
}

@media (max-width: 992px) {
    :root {
        --lm-nav-height: 72px;
        --lm-page-width: min(90vw, 720px);
    }

    .navbar {
        height: var(--lm-nav-height);
        min-height: var(--lm-nav-height);
    }

    .navbar .logo {
        flex: 1 1 auto;
    }

    .navbar .logo img {
        height: 36px;
    }

    .btn-roll {
        flex: 0 0 150px;
        width: 150px;
        margin-right: 12px;
    }

    .responsive-inner {
        width: min(92vw, 720px);
    }

    .titlecontainer {
        min-height: 72vh;
    }

    .titlecontainer .container-fluid {
        padding: 0 7vw !important;
    }

    .titlecontainer .title-primary-line {
        margin-bottom: clamp(28px, 5vh, 58px);
    }

    .titlecontainer .title-secondary-line {
        margin-top: clamp(72px, 10vh, 132px);
    }

    #features {
        min-height: auto;
        padding-top: 74px;
        padding-bottom: 62px;
    }

    #features .container-fluid {
        width: min(92vw, 760px) !important;
    }

    #features .row {
        row-gap: 28px;
    }

    #features .col-6 {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
        padding: 14px !important;
    }

    #features .portfolio-box {
        top: auto;
        right: auto;
        left: auto;
    }

    #manager .row.p-20 {
        position: relative;
        min-height: 720px;
        padding: 74px 0 96px !important;
    }

    #manager .mainImageAppDemo {
        width: min(54vw, 380px) !important;
    }

    #manager .brandsImageDemoL,
    #manager .brandsImageDemoR {
        position: absolute !important;
        inset: auto;
        top: 44%;
        width: min(42vw, 360px);
        margin: 0;
    }

    #manager .brandsImageDemoL {
        right: auto;
        left: 6vw;
    }

    #manager .brandsImageDemoR {
        right: 6vw;
        left: auto;
    }

    #LUTsPro {
        min-height: 620px;
        height: 620px;
    }

    #LUTsPro .responsive-inner {
        top: 58px;
        left: 7vw;
        width: min(72vw, 720px);
        min-height: 460px;
    }

    #LUTsPro .responsive-inner p:not(.boxedText) {
        max-width: 52vw;
    }

    #LUTsPro .imagesBanner {
        top: 190px;
        left: 50%;
        width: min(86vw, 820px);
        opacity: 0.82;
    }
}

@media (max-width: 640px) {
    :root {
        --lm-nav-height: 62px;
        --lm-page-width: 94vw;
    }

    .navbar {
        padding: 0 14px;
    }

    .navbar .logo {
        flex: 0 0 64px;
        overflow: hidden;
    }

    .navbar .logo img {
        height: 21px;
    }

    .nav-links {
        position: absolute !important;
        top: 0;
        right: 6px;
        left: 82px;
        display: block !important;
        width: auto !important;
        height: var(--lm-nav-height) !important;
        background: transparent !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .nav-links a {
        position: absolute !important;
        top: 27px;
        display: block !important;
        width: 48px;
        margin: 0 !important;
        padding: 4px 0;
        overflow: visible;
        font-size: clamp(0.31rem, 1.1vw, 0.42rem);
        line-height: 1.05;
        text-align: center;
    }

    .nav-links a:nth-child(1) {
        left: 0;
        width: 28px;
        text-align: left;
    }

    .nav-links a:nth-child(2) {
        left: 20%;
        width: 42px;
    }

    .nav-links a:nth-child(3) {
        left: 43%;
        width: 42px;
    }

    .nav-links a:nth-child(4) {
        left: 66%;
        width: 44px;
    }

    .desktop-full-access-link,
    .nav-links #indicator,
    .hamburger,
    .btn-roll {
        display: none !important;
    }

    .mobile-full-access-link {
        position: fixed;
        top: 25px;
        right: 6px;
        z-index: 10003;
        display: block;
        width: auto;
        padding: 2px 4px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.42rem;
        font-weight: 500;
        line-height: 1.05;
        text-align: right;
    }

    #home.responsive-section {
        min-height: 640px;
        padding-bottom: 0;
        overflow: hidden;
    }

    #home .responsive-inner {
        top: 22px;
        left: 0;
        z-index: 6;
        width: 94vw;
        height: 390px;
        aspect-ratio: auto;
    }

    #home .atropos {
        position: absolute;
        top: 300px;
        left: -12vw;
        display: block;
        width: 118vw;
        max-width: 470px;
        opacity: 0.64;
        transform: translate(0, 0) scale(1.08);
        transform-origin: top left;
    }

    #home .responsive-inner > .outlinedText {
        top: 20% !important;
        left: 7% !important;
        font-size: clamp(1.95rem, 10vw, 3.45rem);
    }

    #home .responsive-inner > h1.abs:not(.outlinedText) {
        top: 34% !important;
        left: 8% !important;
        font-size: clamp(2.35rem, 11.5vw, 4rem);
        line-height: 1;
    }

    #home .responsive-inner > .boxedText {
        top: 52% !important;
        left: 8% !important;
        max-width: 74vw;
        white-space: nowrap;
    }

    #home .responsive-inner > p.T65 {
        top: 61% !important;
        left: 16% !important;
        width: 70vw;
        font-size: clamp(0.64rem, 2.7vw, 0.82rem);
    }

    .boxedText {
        padding: 7px 12px;
        font-size: 0.72rem;
    }

    p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .titlecontainer {
        min-height: 620px;
    }

    .titlecontainer .container-fluid {
        padding-right: 5vw !important;
        padding-left: 5vw !important;
    }

    .titlecontainer .font-large {
        font-size: clamp(1.9rem, 9vw, 3.25rem);
        line-height: 1.15;
    }

    .titlecontainer .title-primary-line {
        margin-bottom: clamp(18px, 4vh, 34px);
    }

    .titlecontainer .title-secondary-line {
        margin-top: clamp(52px, 9vh, 82px);
    }

    #features {
        min-height: 760px;
        padding-top: 74px;
        padding-bottom: 76px;
    }

    #features .container-fluid {
        width: 96vw !important;
    }

    #features .row {
        row-gap: 30px;
    }

    #features .col-6 {
        flex: 0 0 33.333%;
        width: 33.333%;
        max-width: 33.333%;
        padding: 7px !important;
    }

    #features .portfolio-image img {
        filter: brightness(88%);
    }

    #features .portfolio-caption {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 0.58rem;
        line-height: 1.15;
    }

    #features .portf1 {
        top: -18px !important;
        left: -1.8vw !important;
    }

    #features .portf2 {
        top: 22px !important;
        left: 0 !important;
    }

    #features .portf3 {
        top: -8px !important;
        right: -1.8vw !important;
    }

    #features .portf4 {
        top: 30px !important;
        left: -1.2vw !important;
    }

    #features .portf5 {
        top: -12px !important;
        left: 0.4vw !important;
    }

    #features .portf6 {
        top: 24px !important;
        right: -1.4vw !important;
    }

    #features .portf7 {
        top: 12px !important;
        left: -1vw !important;
    }

    #features .portf8 {
        top: 20px !important;
        right: -1vw !important;
    }

    #manager,
    #manager .row.p-20 {
        min-height: 620px;
    }

    #manager .row.p-20 {
        padding: 72px 0 84px !important;
    }

    #manager .mainImageAppDemo {
        width: min(42vw, 210px) !important;
    }

    #manager .brandsImageDemoL,
    #manager .brandsImageDemoR {
        position: absolute !important;
        top: 44%;
        bottom: auto;
        width: min(42vw, 210px);
        margin: 0;
    }

    #manager .brandsImageDemoL {
        right: auto;
        left: 2vw;
    }

    #manager .brandsImageDemoR {
        right: 2vw;
        left: auto;
    }

    #LUTsPro {
        min-height: 620px;
        height: 620px;
    }

    #LUTsPro .responsive-inner {
        top: 82px;
        left: -8vw;
        width: 112vw;
        min-height: 0;
    }

    #LUTsPro .responsive-inner .outlinedText {
        top: -18% !important;
        left: 16% !important;
        font-size: clamp(2.4rem, 14vw, 4.5rem);
    }

    #LUTsPro .responsive-inner h1.abs:not(.outlinedText) {
        top: 4% !important;
        left: 23% !important;
        font-size: clamp(2.7rem, 15vw, 5rem);
    }

    #LUTsPro .responsive-inner .boxedText {
        top: 27% !important;
        left: 24% !important;
        white-space: nowrap;
    }

    #LUTsPro .responsive-inner p.abs:not(.boxedText) {
        top: 42% !important;
        left: 32% !important;
        width: 46vw;
        max-width: 46vw;
        font-size: clamp(0.62rem, 2.6vw, 0.84rem);
        line-height: 1.22;
        white-space: normal;
    }

    #LUTsPro .imagesBanner {
        top: 86px;
        left: 50%;
        width: 124vw;
        max-width: none;
        opacity: 0.86;
    }

    .pricing-section {
        min-height: 610px;
        padding: 48px 0 42px;
        row-gap: 18px;
    }

    .pricing-heading,
    .pricing-grid {
        width: 92vw;
    }

    .pricing-heading {
        margin-bottom: 0;
    }

    .pricing-heading h2 {
        font-size: clamp(1.7rem, 9vw, 2.7rem);
    }

    .pricing-heading p {
        font-size: 0.72rem;
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 10px;
        max-width: none;
    }

    .pricing-card {
        min-height: 342px;
        padding: 11px 8px 12px;
    }

    .pricing-card h3 {
        font-size: clamp(0.9rem, 4.6vw, 1.25rem);
    }

    .pricing-card-header {
        gap: 4px 6px;
    }

    .pricing-card-header span {
        font-size: 0.48rem;
    }

    .pricing-price {
        gap: 6px;
        margin-top: 9px;
        font-size: clamp(1.35rem, 7vw, 1.9rem);
    }

    .original-price {
        font-size: 0.78rem;
    }

    .pricing-copy {
        margin-top: 7px;
        font-size: 0.56rem;
        line-height: 1.25;
    }

    .pricing-list {
        gap: 5px;
        margin-top: 14px;
        margin-bottom: 18px;
        font-size: 0.52rem;
        line-height: 1.25;
    }

    .pricing-list li {
        padding-left: 13px;
    }

    .pricing-button {
        min-height: 31px;
        font-size: 0.58rem;
    }

    .offer-badge {
        top: -15px;
        right: 11px;
        min-width: 42px;
        min-height: 28px;
        padding: 0 8px;
        font-size: 0.5rem;
    }

    footer.pb-0.cursorStyle-Fluid {
        padding: 20px 0 10px;
    }

    footer .container {
        width: 92vw;
        max-width: 92vw;
    }

    footer .typewriterTextTitile {
        margin-bottom: 12px !important;
    }

    footer .typewriterTextTitile h5 {
        font-size: clamp(0.72rem, 3.7vw, 1rem);
        line-height: 1.18;
        white-space: normal;
    }

    footer .container:nth-of-type(2) > .row:first-child {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
        align-items: center;
        justify-content: space-between;
    }

    footer .footer-logo img {
        max-height: 20px;
    }

    footer .last-paragraph-no-margin a {
        font-size: 0.62rem;
    }

    footer .newsletter-style-02 {
        width: 140px;
        max-width: 140px;
    }

    footer input.form-control {
        min-height: 28px;
        padding: 0 9px;
        font-size: 0.58rem;
    }

    footer .row.justify-content-center {
        margin-top: 10px;
    }

    footer .row.justify-content-center p,
    footer .row.justify-content-center a {
        font-size: 0.5rem;
    }

    footer.site-footer {
        padding: 24px 0 10px;
    }

    .footer-shell {
        width: 90vw;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-subscribe .typewriterTextTitile {
        margin-bottom: 12px !important;
    }

    .footer-subscribe .typewriterTextTitile h5 {
        min-height: 1.25em;
        font-size: clamp(0.78rem, 4vw, 1rem);
        line-height: 1.22;
    }

    .footer-subscribe-form {
        width: min(100%, 300px);
        height: 36px;
        padding-left: 12px;
    }

    .footer-subscribe-form input[type="email"] {
        font-size: 0.66rem;
    }

    .footer-submit-button {
        width: 28px;
        height: 28px;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 16px;
    }

    .footer-links div {
        grid-template-columns: repeat(3, auto);
        gap: 7px 15px;
    }

    .footer-links span {
        font-size: 0.5rem;
    }

    .footer-links a {
        font-size: 0.58rem;
    }

    .footer-rule {
        margin: 22px 0 11px;
    }

    .footer-bottom {
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom .footer-logo img {
        max-height: 19px;
    }

    .footer-bottom p {
        max-width: 62vw;
        font-size: 0.48rem;
        text-align: right;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
