/* override for no scroll main menu DRUPAL  */
header.main-header {
    position: relative;
    width: 100vw;
    background: transparent;
    border: none;
    z-index: 9;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}
header.main-header.hidden-header {
    opacity: 0;
    z-index: -1;
}
header.main-header > .top {
    display: none;
}
header.main-header > .bottom {
    margin: 0;
    background: #fff;
}

.sticky-header .main-header > .bottom {
    position: relative;
    display: none;
}

main.main-container {
    margin-top: 0px;
}


/* override for no scroll main menu WP  */
div.site.sticky-header .site-header {
    position: relative;
}

div.site.sticky-header > main {
    padding-top: 0px;
}

/* begin landing styles */
.landing-main-container {
    margin: 0;
    overflow: visible; /* removed overflow:hidden so sticky can work */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    font-size: 1.6rem;
}


.landing-main-container .h1, 
.landing-main-container .h2, 
.landing-main-container .h3, 
.landing-main-container .h4, 
.landing-main-container .h5, 
.landing-main-container .h6, 
.landing-main-container h1, 
.landing-main-container h2, 
.landing-main-container h3, 
.landing-main-container h4, 
.landing-main-container h5, 
.landing-main-container h6 {
	font-family: "Roboto", "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 700;
    margin: 0;
	margin-bottom: 1rem;
}

.landing-main-container p {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.5;
}


.landing-main-container #landing-content {
    width: 100%;
}

.landing-main-container .landing-content-box {
    background-color: #000000;
    pointer-events: auto;
    /*padding-top: 70px;*/
}

.landing-main-container .landing-content-box section {
    padding: 120px 0;
    margin: 0 auto;
}

.landing-main-container .landing-content-box section.no-padding {
    padding: 0;
}

.landing-main-container .landing-content-box section:last-child {
    padding-bottom: 0px;
}
/*
#quote {
    font-size: clamp(2rem, 10rem, 5vw);
    color: #dfdcff;
    text-align: center;
    line-height: 1.2
}

button {
    padding: 10px;
    margin: 20px 0;
}
*/

.landing-main-container .fade-in {
    opacity: 1;
    transform: translateY(0px);
}

.landing-main-container #landing-extra-space {
    height: 40dvh;
    border: 1px solid red;
    background-color: transparent;
    pointer-events: none;
}


.landing-main-container .landing-content-box {
    color: #ffffff;
}

.landing-main-container .landing-content-box h1 {
    /*color: var(--wp--preset--color--came-cyan) !important;*/
    font-family: Came,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 7rem;
    color: #ffffff;
    margin: 0;
    margin-bottom: 1rem;
}

.landing-main-container .lp-header {
    height: 100vh;
    position: relative;
    background-color: black;
}

.landing-main-container .box-top {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

.landing-main-container .video-fs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-main-container .video-fs video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-main-container .box-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
    /* width: 1170px; */
    width: 70%;
    height: 100%;
    margin: 0 auto;
}

.landing-main-container .box-title .box {
    margin-top: 15vh;
    padding: 35px 30px;
    background-color: #00b0ed;
    max-width: 530px;
    width: 100%;
}

.landing-main-container .box-title .box h2 {
    color: #003247;
    font-size: 3.6rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 1rem;
}
.landing-main-container .gallery-features {
    /* Use a CSS variable for slide width and center offset so the layout remains consistent
        across different viewport sizes and can be reused for pseudo spacing elements. */
    --slide-width: 70vw;
    --center-offset: calc((100vw - var(--slide-width)) / 2);
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    padding: 0; /* spacing provided by pseudo elements inside .slider-wrapper */
    -webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;
    /* touch-action is controlled via media query and JS to avoid blocking horizontal scroll on touch devices */
    /* touch-action is intentionally not set here to allow native horizontal panning on mobile */
}


/* for mouse only */
@media (pointer: fine) and (hover: hover) {
    .landing-main-container .gallery-features {
        cursor: grab;
        touch-action: pan-y; /* desktop only: allow vertical page pan while enabling mouse drag */
    }
    .landing-main-container .gallery-features.drag-active {
        cursor: grabbing;
        user-select: none;
    }

    /*
    .landing-main-container .gallery-features {
        background-color: red;
    }
    */
}

/* Restored slider wrapper layout (was accidentally removed) */
.landing-main-container .slider-wrapper {
    display: flex;
    gap: 20px; /* horizontal spacing between slides */
    align-items: stretch;
}

/* Add pseudo elements so first/last slides can be centered without hitting the page edge */
.landing-main-container .slider-wrapper::before,
.landing-main-container .slider-wrapper::after {
    content: "";
    flex: 0 0 var(--center-offset);
    height: 1px; /* minimal height so it does not affect vertical flow */
    pointer-events: none;
}

.landing-main-container .slider-item {
    flex: 0 0 var(--slide-width);
    scroll-snap-align: center;
    text-align: center;
    margin-right: 0; /* spacing handled with gap */
    /* Make slides look clickable */
    cursor: pointer;
    height: 680px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-main-container .slider-item img {
    width: 100%;
    display: block;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none; /* prevent default image drag which interferes with pointer drag */
    -webkit-user-select: none;
    user-select: none;
}

.landing-main-container .content-box {
    height: 100%;
}

.landing-main-container .slider-item .desc-text {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 10px;
}

.landing-main-container .slider-item p {
    text-align: center;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(0, 0, 0, 0.6);
    padding: 10px 20px;
    font-size: 1.3em;
    font-weight: 400;
    /* border-radius: 999px; */
    backdrop-filter: blur(5px);
}

.landing-main-container .dots {
    display: flex;
    justify-content: center;
    background: rgba(55, 55, 55, 0.5);
    padding: 20px;
    border-radius: 100px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Make dots sticky inside the gallery-section and horizontally centered */
.landing-main-container .gallery-section .dots-container {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 0;           /* stick to the bottom of the viewport while within the container */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;
    z-index: 20;
    padding: 30px 0;     /* vertical spacing */
    pointer-events: auto; /* enable clicks inside dots when parent has pointer-events disabled */
    background: transparent;
    margin: 0;
    padding-top: 40px;
}

/* Fallback when an ancestor is clipping (overflow:hidden/auto) and sticky can't work:
    keep dots anchored to the bottom of the gallery-section using absolute positioning */
.landing-main-container .gallery-section .dots-container.absolute-fallback {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.landing-main-container .dot {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: rgba(245, 245, 247, 0.8);
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.landing-main-container .dot.active {
    background-color: #ffffff;
    border-radius: 0px;
    /* background-color: #00b0ed; */
    /* border-radius: 20px; */
    width: 30px;
}

.landing-main-container .gallery-section {
    background-color: #222222;
    position: relative;
    /* Ensure enough bottom padding so the gallery content doesn't get overlapped by sticky dots. Adjust as needed for your design. */
    padding-bottom: 40px;
}

.landing-main-container .slider-item .box-top {
    position: relative;
}    

.landing-main-container .title-features {
    text-align: left;
    color: #ffffff;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    padding-top: 40px;
    padding-bottom: 30px;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: flex-end;
}

.landing-main-container .title-features p {
    /* margin-left: auto; */
    align-self: center;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.landing-main-container .title-features p a {
    text-decoration: none;
}

.landing-main-container .title-features h2 {
    font-weight: 700 !important;
    font-size: 4.6rem;
}

.landing-main-container .block-black-center {
    background-color: #000000;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #ffffff;
}

.landing-main-container .block-black-center .header-title h2 {
    color: #ffffff;
    font-size: 7rem;
    line-height: 7rem;
    font-family: Came,Roboto,Arial,sans-serif;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
}

.landing-main-container .block-black-center .header-title p {
    color: #86868B;
    font-size: 18px;
    line-height: 3.6rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.landing-main-container .block-black-center .header-title .headline-eyebrow {
    font-size: 24px;
    color: #00b0ed;
    font-weight: 700;
}

.landing-main-container .block-black-center h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.landing-main-container .box-compare-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    width: 70%;
    max-width: 860px;
    margin: 10px auto 0 auto;
}
.landing-main-container .box-feature {
    flex: 1;
    text-align: center;
    background-color: #222222;
    border-radius: 30px;
    padding: 40px;
}

.landing-main-container .container-compare-features {
    padding-top: 10px;
}

.landing-main-container .bold {
    font-weight: bold;
    font-size: 28px !important;
}

.landing-main-container .box-info-feature h3 {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 4px;
    color: #00b0ed;
    text-transform: uppercase;
}

.landing-main-container .box-info-feature h4 {
    font-size: 16px;
    margin-top: 0px;
    color: #ffffff;
    text-transform: uppercase;
}

.landing-main-container .box-info-feature p {
    font-size: 16px;
    margin: 30px auto;
    max-width: 250px;
    color: rgb(153, 153, 153);
}

.landing-main-container .box-info-feature p strong {
    font-weight: bold;
    display: block;
    color: #ffffff;
}

.landing-main-container .small-icon-font {
    font-size: 20px !important;
    vertical-align: text-bottom;
}

/* box-quadri-links CTA buttons, matched to CAME global - NEW ATI page style */
.landing-main-container .box-quadri-links {
    display: flex;
    gap: 20px;
    justify-content: center; /* center the two buttons */
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
}

.landing-main-container .box-quadri-links .button-style1 {
    font-family: Came,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    display: inline-block;
    background-color: #00b0ed; /* main brand blue used on the page */
    color: #003247; /* dark color used for text on the blue background in the landing */
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.landing-main-container .box-quadri-links .button-style1:hover,
.landing-main-container .box-quadri-links .button-style1:focus {
    background-color: #003247;
    color: #00b0ed;
}

.landing-main-container .box-video1 {
    margin-top: 80px;
    width: 100%;
}

.landing-main-container .box-video1 video {
    width: 100%;
    display: block;
}

.landing-main-container .bg-gradient-black {
    background-image: linear-gradient(rgb(0,0,0),rgb(29,29,31) 50%);
}

.landing-main-container .box-last-image {
    height: 30vw;
    overflow: hidden;
}

.landing-main-container .box-last-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.landing-main-container .box-ending-links {
    display: flex;
    gap: 20px;
    justify-content: center; /* center the two buttons */
    align-items: center;
    margin-top: 24px;
    margin-bottom: 120px;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
}

.landing-main-container .box-ending-links .button-style1 {
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    display: inline-block;
    background-color: #00b0ed; /* main brand blue used on the page */
    color: #003247; /* dark color used for text on the blue background in the landing */
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.landing-main-container .box-ending-links .button-style1:hover,
.landing-main-container .box-ending-links .button-style1:focus {
    background-color: #003247;
    color: #00b0ed;
}

.landing-main-container .box-ending-text {
    padding-bottom: 10px;
}

.landing-main-container .box-3d {
    width: 100%;
    /* margin: 80px auto; */
}

.landing-main-container .box-3d model-viewer {
    width: 100%;
    height: 40vw;
    /* background-color: #000000; */
}

.landing-main-container .lp-header .box {
    will-change: transform, opacity;
    transition: transform 0.2s ease-out;
}

.landing-main-container .block-white {
    background-color: rgb(245, 245, 247);
    color: #000000;
}

.landing-main-container .block-black-center.block-white .header-title h2 {
    color: rgb(51, 51, 54);
}

.landing-main-container .box-header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: left; /* center the two buttons */
    align-items: center;
    margin-top: 24px;
}

.landing-main-container .lp-header .box-header-links {
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.landing-main-container .box-header-links .button-style1 {
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    display: inline-block;
    background-color: #ffffff;
    color: #003247;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 0px solid #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}
.landing-main-container .box-header-links .button-style1:hover,
.landing-main-container .box-header-links .button-style1:focus {
    background-color: #003247;
    color: #ffffff;
}

.landing-main-container .box-header-links .button-style2 {
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    display: inline-block;
    background-color: #ffffff;
    color: #003247;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}


.landing-main-container .graph-anim {
    position: relative;
    overflow: hidden; /* clip overflowing content */
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.landing-main-container .graph-anim .lines {
    background-image: url("../assets/img/came-bkx-grafico.png");
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.landing-main-container .graph-anim .lines {
    z-index: 1;
    will-change: clip-path, -webkit-clip-path;
    /* Start fully clipped on the left: 0 width (invisible) */
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.landing-main-container .graph-anim .bg-text {
    z-index: 2; /* ensure text overlay sits above the graph */
    pointer-events: none;
}

.landing-main-container .graph-anim .bg-text img {
    width: 100%;
    display: block;
}

.landing-main-container .box-graph-anim {
    /*
    padding: 40px 0 60px 0;
    */
    margin-top: -2vw;
}


.landing-main-container .small.bold {
    font-size: 21px !important;
    line-height: 3rem !important;
}


.landing-main-container .box-2cols {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    width: 70%;
    max-width: 1390px;
    margin: 80px auto 0 auto;
}
.landing-main-container .box-2cols .box-col {
    flex: 1;
    text-align: left;
}

.landing-main-container .box-2cols .box-col .box-video1 {
    margin-top: 0px;
}

/*
.landing-main-container .box-2cols .box-col .box-video1 video {
    border-radius: 8px;
}
*/

.landing-main-container .box-2cols .box-col .box-quadri-links {
    justify-content: left;
}

.landing-main-container .maxwidth400 {
    max-width: 400px;
}

.landing-main-container .maxwidth500 {
    max-width: 500px;
}

.landing-main-container .box-video-container {
    width: 100%;
    min-height: 500px; 
    height: 100%;
    position: relative; 
    overflow: hidden;
}

.landing-main-container .box-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; 
    z-index: -1;
}


.landing-main-container .block-darkgrey-center {
    background-color: #222222;
}

.landing-main-container .box-big-card {
    border-radius: 30px;
    background-color: #000000;
    padding: 80px;
    width: 70%;
    max-width: 1390px;
    margin: 0 auto;
}

.landing-main-container .box-big-card p {
    color: #86868B;
}

.landing-main-container .box-big-card .box-2cols {
    width: 100%;
    margin-top: 0;
}

.landing-main-container .box-big-card .box-2cols h2 {
    color: #ffffff;
    font-size: 7rem;
    line-height: 7rem;
    font-family: Came,Roboto,Arial,sans-serif;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.landing-main-container .box-download-app-links {
    padding-top: 10px;
}

.landing-main-container .box-download-app-links a {
    border-radius: 8px;
    border: 1px solid #86868B;
    display: inline-block;
    margin-right: 10px;
}

.landing-main-container .box-download-app-links img {
    display: block;
    width: 140px;
    padding: 2px 10px;
    border-radius: 8px;
    background-color: #000;
}

.landing-main-container p.subtext {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 30px 0 6px 0 !important;
    line-height: 1.5 !important;
}

.landing-main-container .box-col .box-quadri-links {
    padding-left: 0;
    padding-right: 0;
}


.landing-main-container .landing-content-box section.block-wide-section {
    padding: 30px 0;
}

.landing-main-container .landing-content-box section.block-wide-section:last-child {
    padding-bottom: 120px;
}

.landing-main-container .block-wide-section .box-2cols {
    width: 100%;
    max-width: none;
    margin-top: 0;
    min-height: 50vw;
}

.landing-main-container .block-wide-section .box-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.landing-main-container .block-wide-section .box-col {
    display: flex;
    align-items: center;
}

.landing-main-container .block-wide-section .box-col h2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.landing-main-container #box-features-section {
    display: flex;
    gap: 60px;
    justify-content: center;
    width: 70%;
    max-width: 1390px;
    margin: 80px auto 0 auto;
}

.landing-main-container #box-features-section .list-features {
    flex: 1;
    text-align: left;
}

.landing-main-container #box-features-section .box-section-img-features {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.landing-main-container #box-features-section .list-features ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.landing-main-container #box-features-section .list-features ul li {
    display: block;
    padding-bottom: 8px;
}

.landing-main-container #box-features-section .list-features ul li span {
    font-weight: 700;
    background-color: #222222;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #444444;
    cursor: pointer; /* span is clickable */
    user-select: none;
    transition: opacity .18s ease, border-color .18s ease, color .18s ease;
}

.landing-main-container #box-features-section .list-features ul li span i {
    font-size: 14px;
}

#section-img-features {
    position: relative;
    width: 100%;
    height: auto;
}


.landing-main-container #box-features-section .box-top-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Visual state for SVG sections */
.landing-main-container #box-features-section .box-top-svg svg .section-part {
    fill: #ffffff;
    opacity: 0;
    transition: all .18s ease;
    /* transition: opacity .18s ease, fill .18s ease, filter .18s ease; */
    transform-origin: center;
    transform: scale(1.2,1.2);
}

.landing-main-container #box-features-section .box-top-svg svg .section-part.active {
    fill: #00b0ed;
    opacity: 0.7;
    transform: scale(1,1);
}

/* Visual indicator for the active list item */
.landing-main-container #box-features-section .list-features ul li.active span {
    border-color: #00b0ed;
    color: #00b0ed;
}


.landing-main-container .box-2cols-inverted {
    flex-direction: row-reverse;
}


.landing-main-container .block-black-center .header-title h3 {
    font-family: "Roboto", "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.landing-main-container .border-radius-8 {
    border-radius: 8px;
}

.landing-main-container .border-radius-25 {
    border-radius: 25px;
}

.landing-main-container .block-black-center .header-title ul.list-text {
    padding-left: 20px;
    padding-right: 20px;
}

.landing-main-container .block-black-center .header-title ul.list-text li {
    color: #86868B;
    font-weight: bold;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px !important;
    line-height: 3rem !important;
    margin-bottom: 1rem;
}

.landing-main-container p strong {
    color: #ffffff;
}

.landing-main-container .width100 {
    width: 100%;
}


.landing-main-container .came-cyan-color {
    color: #00b0ed !important;
}

.landing-main-container .came-white-color {
    color: #ffffff !important;
}

.landing-main-container .came-text-nowrap {
    white-space: nowrap;
}

.landing-main-container a:focus-visible {
  outline: 3px solid #ffffff !important;
  outline-offset: 3px;
}


.landing-main-container .came-box-compact-content {
    text-align: left;
}

.landing-main-container .came-box-compact-content .box-video1 {
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1068px) {
    .landing-main-container .landing-content-box h1 {
        font-size: 5rem;
    }

    .landing-main-container .box-title .box h2 {
        font-size: 2.8rem;
    }

    .landing-main-container .title-features h2 {
        font-size: 2.8rem;
    }

    .landing-main-container .slider-item p {
        font-size: 1.6rem;
    }

    .landing-main-container .block-black-center .header-title h2 {
        font-size: 5rem;
        line-height: 5rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing-main-container .block-black-center .header-title p {
        line-height: 2.8rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing-main-container .bold {
        font-size: 20px !important;
    }

    .landing-main-container .block-black-center .header-title .headline-eyebrow {
        font-size: 20px;
    }

    .landing-main-container .box-2cols {
        width: 100%;
        max-width: 840px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 35px;
        margin-top: 40px;
    }

    .landing-main-container .box-big-card .box-2cols h2 {
        font-size: 5rem;
        line-height: 5rem;
    }

    .landing-main-container .box-big-card {
        padding: 40px;
        width: 100%;
        max-width: 840px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing-main-container .block-black-center .box-col .header-title p {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links {
        padding-left: 0;
        padding-right: 0;
    }

    /* box-features-section css for mobile */
    .landing-main-container #box-features-section {
        width: 100%;
        max-width: 840px;
        flex-direction: column-reverse;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
        display: flex;
    }

    .landing-main-container #box-features-section .list-features {
        order: 2;
        width: 100%;
    }

    .landing-main-container #box-features-section .box-section-img-features {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 16px;
    }

    .landing-main-container #box-features-section .list-features ul {
        display: flex;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }
    .landing-main-container #box-features-section .list-features ul li {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .landing-main-container #box-features-section .list-features ul li span {
        padding: 10px 14px;
        font-size: 16px;
        border-radius: 20px;
    }

    .landing-main-container #box-features-section .list-features ul li span i {
        display: none;
    }

    .landing-main-container #box-features-section .box-top-svg {
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
    }

}


/* mobile */
@media (max-width: 734px) {
    .landing-main-container .box-title .box {
        margin-top: 0vh;
        bottom: 0px;
        position: relative;
        max-width: none;
    }

    .landing-main-container .box-title {
        width: 100%;
        position: static;
    }

    .landing-main-container .lp-header {
        /* height: calc(100vh - 51px); */
        height: auto;
        position: relative;
    }
    .landing-main-container .box-top {
        position: relative;
    }

    .landing-main-container .lp-header .video-fs {
        position: static;
        width: 100%;
        height: 50vh;
    }
    .landing-main-container .lp-header .video-fs video {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .landing-main-container .slider-item {
        height: 400px;
    }

    .landing-main-container .box-compare-features {
        width: 100%;
        flex-direction: column;
        padding-left: 25px;
        padding-right: 25px;
    }

    .landing-main-container .box-2cols {
        flex-direction: column;
        width: 100%;
        max-width: none;
        padding-left: 25px;
        padding-right: 25px;
        gap: 40px; 
        margin-top: 40px;
    }

    .landing-main-container .maxwidth400 {
        max-width: none;
    }

    .landing-main-container .box-2cols .box-col .header-title p {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-main-container .box-big-card {
        margin: 0 20px;
        width: auto;
    }

}

@media (max-width: 481px) {
    .landing-main-container .box-title .box {
        padding: 35px 25px;
    }

    .landing-main-container .box-title .box h2 {
        font-size: 2.6rem;
    }

    .landing-main-container .lp-header .box-header-links > div {
        flex: 1 1 100%;
    }

    .landing-main-container .lp-header .box-header-links > div a {
        width: 100%;
        text-align: center;
    }

    .landing-main-container .gallery-section .title-features {
        max-width: 100%;
        padding: 25px;
    }

    .landing-main-container .landing-content-box section {
        padding: 60px 0;
    }

    .landing-main-container .box-3d model-viewer {
        height: 70vw;
    }

    .landing-main-container .box-last-image {
        height: 50vh;
        min-height: 400px;
    }

    .landing-main-container .block-black-center .header-title h2 {
        font-size: 3.6rem;
        line-height: 4rem;
        text-align: left;
    }

    .landing-main-container .block-black-center .header-title p {
        line-height: 2.1rem;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .landing-main-container .bold {
        font-size: 17px !important;
    }

    .landing-main-container .block-black-center .header-title .headline-eyebrow {
        font-size: 17px;
    }

    .landing-main-container .box-ending-links > div {
        width: 100%;
    }

    .landing-main-container .box-ending-links > div > a {
        width: 100%;
    }

    .landing-main-container .box-ending-links {
        margin-bottom: 60px;
    }

    .landing-main-container .box-quadri-links > div {
        width: 100%;
    }

    .landing-main-container .box-quadri-links > div > a {
        width: 100%;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links > div {
        width: 100%;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links > div > a {
        width: 100%;
        text-align: center;
    }

    .landing-main-container .small.bold {
        font-size: 17px !important;
        line-height: 2.1rem !important
    }

    .landing-main-container .box-video-container {
        min-height: 370px;
    }

    .landing-main-container .box-big-card .box-2cols h2 {
        font-size: 3.6rem;
        line-height: 4rem;
    }

    .landing-main-container p.subtext {
        font-size: 17px !important;
        line-height: 2.1rem !important;
    }

    .landing-main-container .box-big-card .box-2cols {
        padding-left: 10px;
        padding-right: 10px;
    }

    .landing-main-container .box-big-card {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .landing-main-container .slider-wrapper::before {
        flex: 0 0 8px;
    }

    .landing-main-container .gallery-features {
        --slide-width: 80vw;
    }

    .landing-main-container .slider-item .desc-text {
        bottom: -8px;
    }

    .landing-main-container #box-features-section .list-features ul li span {
        font-size: 14px;
        padding: 8px 12px;
    }

    .landing-main-container .graph-anim {
        width: 100vw;
        margin-left: -30px;
    }

    .landing-main-container .box-quadri-links .button-style1 { 
        font-size: 18px;
    }

    .landing-main-container .block-black-center .header-title h3 {
        font-size: 3rem;
        line-height: 3.8rem;
    }

    .landing-main-container .block-black-center .header-title ul.list-text li {
        font-size: 17px !important;
        line-height: 2.1rem !important;
    }

    .landing-main-container .box-download-app-links img {
        width: 100%;
    }

    .landing-main-container .box-download-app-links a {
        max-width: 140px;
        width: calc(50% - 12px);
    }

    .landing-main-container .box-download-app-links a:last-child {
        margin-right: 0px;
    }

    .landing-main-container .box-video1 {
        margin-top: 40px;
    }

    .landing-main-container .came-box-compact-content .box-video1 {
        margin-bottom: 25px;
    }

}
