:root {
    --d: 3500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgba(168, 239, 255, 1);
    --c2: rgba(168, 239, 255, 0.1);
}

.faqcontainer {
    padding: 0 15%;
}

.faqcolumn {
    font-size: 3vw;
    margin: max(1rem, 3vw);
    border: 0.15rem solid;
    padding: 3vw;
}

.faqcolumn:nth-child(odd) {
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
}

.faqcolumn:nth-child(even) {
    border-image: radial-gradient(ellipse at var(--gradX) var(--gradY), var(--c1), var(--c1) 10%, var(--c2) 40%) 30;
    animation: borderRadial var(--d) linear infinite forwards;
}

.bannerSubheading {
    font-size: 60px;
    font-weight: normal
}

@property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true;
}

@property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true;
}

@property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true;
}

@keyframes borderRotate {
    100% {
        --angle: 420deg;
    }
}

@keyframes borderRadial {
    20% {
        --gradX: 100%;
        --gradY: 50%;
    }
    40% {
        --gradX: 100%;
        --gradY: 100%;
    }
    60% {
        --gradX: 50%;
        --gradY: 100%;
    }
    80% {
        --gradX: 0%;
        --gradY: 50%;
    }
    100% {
        --gradX: 50%;
        --gradY: 0%;
    }
}

.mobileJs#particles-banner-js {
    display: none
}

#particles-banner-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

section#usecasesection {
    background: #0e1f4e;
}

body {
    background-color: #0b1d3a;
}

.video-section {
    background-color: #0b1d3a;
    /* deep tech-blue background */
    float: left;
    width: 100%;
    position: relative;
}

.homepage-banner .video-container {
    flex: 1;
    min-width: 500px;
    overflow: hidden;
    background: #0b1d3a;
    position: relative;
    padding-top: 30px
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: lighten;
    /* makes the video blend nicely */
    opacity: 0.8;
}

#customsection2layout::before,
.homepage-banner:before {
    display: none
}

.mobilevideocontainer {
    display: none
}

.aiheading2 {
    font-size: 3.125rem!important;
}

.livechatbtn {
    display: flex;
    align-items: baseline;
    gap: 15px;
    width: 100%;
    justify-content: start;
    margin-top: 35px;
}

.module-article-image-background.module-position-5 .background-media:after {
    background: radial-gradient(rgba(0, 0, 0, 0.5) 0, var(--rm-midnight) 100%);
}

.particles-js-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.trusted-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 115px;
    float: left;
}

.trusted-section h2 {
    margin-bottom: 0;
    font-size: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trusted-section p {
    font-size: 27px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 3px;
    padding-left: 3px;
}

svg.quotes-icon {
    width: 48px;
    opacity: 1;
    margin-top: -43px;
}


/* svg.quotes-icon path{ fill:#0d1f4f; stroke:#fff} */

svg.quotes-icon {
    fill: none;
    stroke-width: 15;
    stroke: #fff;
}

a.linkinstragram img {
    width: auto;
    height: 60px;
}

article.ourTemssection {
    text-align: center;
}

.scroller {
    max-width: 100%;
    margin-top: 35px;
    margin-bottom: 120px;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5.3rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient( 90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


/* general styles */

:root {
    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-primary-100: hsl(205, 15%, 58%);
    --clr-primary-400: hsl(215, 25%, 27%);
    --clr-primary-800: hsl(217, 33%, 17%);
    --clr-primary-900: hsl(218, 33%, 9%);
}

.faqctalink {
    color: #ff0000;
}

.faqctalink:hover {
    text-decoration: underline;
}

.scroller__inner img {
    width: auto;
    height: 55px;
    max-width: inherit;
}

.aiviewsection {
    display: flex;
    width: 100%;
    gap: 25px;
    margin-top: 45px;
}

.inneraiviewsection {
    /* background: -webkit-linear-gradient(90deg, hsla(223, 74%, 18%, 1) 0%, hsla(223, 84%, 29%, 1) 100%); */
    background: rgb(38, 155, 213);
    background: linear-gradient( 90deg, rgba(38, 155, 213, 1) 0%, rgba(26, 108, 226, 1) 54%, rgba(26, 108, 226, 1) 100%);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inneraiviewsection:hover {
    box-shadow: rgba(179, 166, 255, 0.15) 0px 15px 25px, rgba(179, 166, 255, 0.05) 0px 5px 10px;
}

.inneraiviewsection h4 {
    font-size: 25px;
    width: 100%
}

.getfreeaibtn {
    background: #e40000
}

.getfreeaibtn::after {
    border: 2px solid #e40000;
}

span.textusecase {
    background: #fff;
    color: #132861;
    padding: 5px 11px;
    border-radius: 4px;
    margin-bottom: 25px;
    float: left;
    font-weight: 600
}

.tagline {
    width: 100%;
}

.tagline h3 {
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    text-align: center
}

article.ourTemssection {
    margin-top: 145px;
    margin-bottom: 145px;
}

.linkinstragram {
    background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    border-radius: 8px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
    width: auto;
    position: relative;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkinstragram span.fa {
    font-size: 35px;
}

.instahandler {
    width: 230px;
    margin: 0px auto 30px;
}

#premiumsection {
    padding-bottom: 0
}

#usecasesection {
    margin-bottom: 0
}

#aiusecases {
    padding-top: 100px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .bannerSubheading {
        font-size: 25px;
        font-weight: 600;
    }
    .aiviewsection {
        margin-top: 15px;
    }
    .tagline {
        margin-top: -25px;
    }
    .tagline h3 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
    .primary-heading {
        font-size: 30px;
    }
    .particles-js-desktop {
        display: none
    }
    .particles-js-mobile {
        display: block
    }
    .livechatbtn {
        gap: 8px;
    }
    .mobileJs#particles-banner-js {
        display: block;
        height: 650px;
        bottom: inherit;
        top: 30px;
    }
    canvas#particle-canvas {
        display: none
    }
    #customsection2layout::before {
        display: none
    }
    .twocolumnerpsolution {
        padding-top: 0
    }
    .innerawsthreeCardcolumn:hover {
        box-shadow: none;
    }
    .innerawsthreeCardcolumn:hover::after,
    .innerawsthreeCardcolumn:hover::before {
        display: none
    }
    .innerawsthreeCardcolumn {
        padding: 0
    }
    .video-container {
        min-width: 100%!important
    }
    .desktopvideoconitaner {
        display: none
    }
    .mobilevideocontainer {
        display: block!important;
    }
    .video-container iframe {
        position: inherit;
        width: 100%;
        min-width: 100%;
    }
    .header__content-wrapper .header__ctas a.btn.hireusbtn {
        display: none!important
    }
    div#customsection2layout {
        margin-top: 80px;
    }
    .twocolumnerpsolution {
        gap: 40px;
    }
    #premiumsection {
        padding: 60px 0
    }
    .homepage-banner {
        margin-bottom: 70px;
    }
    section#threecolumnsection {
        padding: 40px 0 !important;
    }
    section#usecasesection {
        padding: 50px 0 !important;
        margin-bottom: 40px;
    }
    span.typed-text {
        font-size: 30px
    }
    .aiheading2 {
        font-size: 2.25rem!important;
    }
    .trusted-section {
        margin: 50px 0;
        padding: 0 10%;
    }
    .trusted-section h2 {
        font-size: 40px!important;
        position: relative;
    }
    .trusted-section p {
        letter-spacing: 0;
        margin-top: 10px;
        padding-left: 0;
        line-height: 30px;
    }
    .trusted-section h2 svg.quotes-icon.firsticonquote {
        width: 27px;
        position: absolute;
        left: -30px;
        top: 8px;
    }
    .trusted-section h2 svg.quotes-icon.lasticonqote {
        right: 51px;
        bottom: -15px;
        width: 27px;
        position: absolute;
    }
    .aiviewsection {
        flex-direction: column;
    }
}

@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
    .editorHeading,
    #changingword {
        width: 100%;
        clear: both;
        float: left;
    }
}

@media only screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
    .editorHeading,
    #changingword {
        width: 100%;
        clear: both;
        float: left;
    }
}

div#customsection2layout {
    padding-top: 100px;
    background: #0d1f4f
}


/****** New edit ***/

section.header__content-wrapper {
    padding-top: 3.5rem;
}

#topHeadermain {
    display: none
}

.video-wrapper::after {
    display: none
}

.homepage-banner:before {
    background: none;
}

.homepage-banner__content-underlap .video-wrapper:before {
    background: url(https://meisteritsystems.com/wp-content/uploads/2025/06/video-banner.webp);
    background-repeat: no-repeat;
    background-position: left bottom 0px;
    background-size: cover;
}

.homepage-banner__content-underlap .video-wrapper {
    height: 720px;
}

.homepage-banner {
    background-image: url('https://meisteritsystems.com/wp-content/uploads/2025/06/banner-bg-8.webp');
    background-size: cover;
    background-position: top 0px right;
    /* Adjusted to show the curve on the right */
    background-repeat: no-repeat;
    width: 100vw;
    height: auto;
    padding-top: 220px;
    position: relative;
    overflow: hidden;
    height: 690px;
}

.homepage-banner .content-wrapper .filter-on {
    bottom: 140px;
}

.homepage-banner__content-underlap {
    width: 100%;
    top: 125px;
}

main {
    padding-top: 0
}

#herobannervideo .video-wrapper {
    clip-path: inherit;
    right: 0px;
    padding: 0;
    /* top: -82px; */
    top: -125px;
    z-index: -1;
    width: 100%
}

.homepage-banner .content-wrapper {
    height: auto;
}

section.module-article-repeater.layout-3.module-position-3.image-zoom.cycle-logos.rigid {
    margin-top: 80px;
}

@media only screen and (max-width: 767px) {
    .homepage-banner {
        padding: 161px 0 0 0;
        height: 750px;
        margin-bottom: 20px;
        margin-top: -182px;
    }
    .heading-rotation {
        padding-left: 0
    }
    .homepage-banner .content-wrapper .strapline {
        margin-bottom: 0
    }
    div#herobannervideo {
        position: absolute;
        top: -248px;
    }
    .homepage-banner__content-underlap .video-wrapper {
        max-width: 100%
    }
    .livechatbtn {
        gap: 8px;
        width: 66%;
        flex-direction: column;
        justify-content: flex-start;
        /* align-items: center; */
    }
    .txtor {
        width: 100%;
        text-align: center;
    }
}

.primary-heading {
    padding-top: 0
}

.redtext {
    color: #de0000
}

.stepprocesssection,
.case__cta {
    background: #0d1f4f;
    position: relative;
    width: 100%;
    display: block;
    padding-bottom: 120px;
    margin: 0
}

.case__cta {
    padding-top: 0px;
    padding-bottom: 80px;
    text-align: center
}

.stepstwocolumn {
    display: grid;
    width: 100%;
    row-gap: 15px;
    column-gap: 50px;
    padding: 0 20%;
    margin-bottom: 50px;
    grid-template-columns: 58% 42%;
}

.stepstwocolumn h2 {
    font-size: 42px;
    margin: 0;
}

.stepstwocolumn .col {
    width: 100%;
}

.innerbuttonbox span span img {
    width: 15px;
    height: auto;
    margin: -4px 6px 0 0;
    display: inline;
}

.innerbuttonbox a.btn {
    width: 300px;
}

.steps .innercolumn span {
    font-size: 20px;
}

span.buttonprocesstext {
    width: 300px;
    display: block;
    text-align: center;
    padding-top: 3px;
}

span.buttonprocesstext span {
    font-size: 16px;
    color: #fff;
}

.col.stepsbutton {
    padding-top: 11px;
}

.heading2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
}

.case__cta_inner span {
    font-size: 20px;
    display: block;
    padding: 20px 0 50px;
    letter-spacing: 0;
}

#trustedLogo {
    margin-top: 165px;
}

footer#footer {
    margin-top: 0
}

.active-step-btn {
    background: #e40000;
}

.active-step-btn::after {
    border-color: #e40000
}

a.btn.active-step-btn:hover {
    -webkit-box-shadow: 0px 0px 46px -7px rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0px 0px 46px -7px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 46px -7px rgba(255, 255, 255, 0.4);
    font-weight: 800;
}

a.removehover:hover::before,
a.removehover:focus::before {
    display: none;
}

.primary-heading {
    font-size: 4.375rem;
    font-weight: 900;
}

a.btn.removehover {
    cursor: not-allowed;
}

.heading2primary {
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 900;
    width: 100%;
    text-align: center;
    margin: 0 0 90px 0;
}

.font50 {
    font-size: 60px;
}

.glow {
    animation: move 5s linear infinite;
    offset-path: rect(0% auto 100% auto);
    background: radial-gradient(#fff, #f1f5f9, transparent);
}

@keyframes move {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

.faqcolumn h3 {
    font-size: 40px;
}

.faqcolumn h3.uppercase {
    display: none;
}

.parasubheading {
    font-size: 43px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    padding-bottom: 70px;
}


/* All mobile devices */

@media only screen and (max-width: 767px) {
    .stepstwocolumn {
        padding: 0;
        grid-template-columns: 1fr;
    }
    div#herobannervideo {
        position: absolute;
        top: 34px;
    }
    .homepage-banner {
        height: 530px!important;
        padding: 222px 0 0 0;
    }
    .primary-heading {
        font-size: 42px;
    }
    .col.steps {
        text-align: center;
    }
    #linkgetstart {
        display: none
    }
    .stepprocesssection,
    .case__cta {
        padding-bottom: 10px;
    }
    footer#footer {
        margin-top: 0 !important;
    }
    .innerbuttonbox a.btn {
        width: 100%;
        /* margin: 0 auto; */
        max-width: 100%;
    }
    span.buttonprocesstext {
        width: 100%
    }
    .faqcontainer {
        padding: 0
    }
    .parasubheading {
        font-size: 30px;
        line-height: 32px;
    }
    .freeconsultation {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .heading2primary {
        margin-bottom: 40px;
    }
    .livechatbtn {
        width: 46%;
        margin: 0 auto!important;
    }
    #trustedLogo {
        margin-top: 110px;
    }
}