/* =========================================================
   MAXBLO — SERVICES STORY
========================================================= */

.mbx-services-story {

    --mbx-navy: #18235F;
    --mbx-blue: #245DE8;
    --mbx-indigo: #3948D0;
    --mbx-violet: #7045E8;

    --mbx-text: #18235F;
    --mbx-muted: #68738A;
    --mbx-line: #E5E9F2;

    position: relative;

    overflow: hidden;

    background: #fff;

    color: var(--mbx-text);

}


/* =========================================================
   GLOBAL
========================================================= */

.mbx-services-story *,
.mbx-services-story *::before,
.mbx-services-story *::after {

    box-sizing: border-box;

}


.mbx-services-story button {

    font-family: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.mbx-story-container {

    width:
        min(1360px, calc(100% - 90px));

    margin: 0 auto;

}


/* =========================================================
   INTRO
========================================================= */

.mbx-story-intro {

    padding:
        150px 0 100px;

    text-align: center;

}


.mbx-story-kicker {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-bottom: 27px;

    color: var(--mbx-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.mbx-story-kicker span {

    width: 45px;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--mbx-blue));

}


.mbx-story-kicker span:last-child {

    background:
        linear-gradient(90deg,
            var(--mbx-violet),
            transparent);

}


.mbx-story-main-title {

    max-width: 1000px;

    margin: 0 auto;

    color: var(--mbx-navy);

    font-size:
        clamp(55px, 8vw, 115px);

    line-height: .87;

    letter-spacing: -7px;

    font-weight: 700;

}


.mbx-story-main-title strong {

    display: block;

    background:
        linear-gradient(90deg,
            var(--mbx-blue),
            var(--mbx-indigo),
            var(--mbx-violet));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.mbx-story-intro-text {

    max-width: 560px;

    margin: 30px auto 0;

    color: var(--mbx-muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   STORY WRAPPER
========================================================= */

.mbx-story-wrapper {

    position: relative;

}


/* =========================================================
   PROGRESS
========================================================= */

.mbx-story-progress {

    position: fixed;

    z-index: 100;

    left: 28px;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

}


.mbx-progress-line {

    position: absolute;

    left: 5px;

    top: 4px;

    bottom: 4px;

    width: 1px;

    background: #E1E5EE;

}


.mbx-progress-fill {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 10%;

    background:
        linear-gradient(180deg,
            var(--mbx-blue),
            var(--mbx-violet));

    transition:
        height .5s cubic-bezier(.2, .7, .2, 1);

}


.mbx-progress-items {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.mbx-progress-item {

    position: relative;

    width: 12px;

    height: 12px;

    padding: 0;

    margin: 0;

    border: 0;

    border-radius: 50%;

    background: #D9DEEA;

    font-size: 0;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


.mbx-progress-item.active {

    background:
        var(--mbx-blue);

    transform: scale(1.35);

    box-shadow:
        0 0 0 5px rgba(36, 93, 232, .08);

}


/* =========================================================
   CHAPTER
========================================================= */

.mbx-story-chapter {

    position: relative;

    min-height: 820px;

    display: flex;

    align-items: center;

    padding:
        100px 0;

    border-top:
        1px solid var(--mbx-line);

    opacity: .28;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2, .7, .2, 1);

}


.mbx-story-chapter.active {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   GRID
========================================================= */

.mbx-story-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .9fr) minmax(500px, 1.1fr);

    align-items: center;

    gap: 90px;

}


.mbx-story-grid.reverse {

    grid-template-columns:
        minmax(500px, 1.1fr) minmax(0, .9fr);

}


.mbx-story-grid.reverse .mbx-story-copy {

    order: 2;

}


.mbx-story-grid.reverse .mbx-story-visual {

    order: 1;

}


/* =========================================================
   COPY
========================================================= */

.mbx-story-copy {

    position: relative;

    padding-left: 20px;

}


.mbx-story-number {

    position: absolute;

    left: -5px;

    top: -45px;

    color:
        rgba(24, 35, 95, .055);

    font-size: 150px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -12px;

    pointer-events: none;

}


.mbx-story-label {

    position: relative;

    z-index: 2;

    margin-bottom: 20px;

    color: var(--mbx-violet);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.mbx-story-copy h3 {

    position: relative;

    z-index: 2;

    max-width: 650px;

    margin: 0;

    color: var(--mbx-navy);

    font-size:
        clamp(48px, 5.2vw, 78px);

    line-height: .92;

    letter-spacing: -5px;

    font-weight: 700;

}


.mbx-story-copy h3 span {

    display: block;

    color: var(--mbx-blue);

}


.mbx-story-description {

    position: relative;

    z-index: 2;

    max-width: 550px;

    margin:
        30px 0 0;

    color: var(--mbx-muted);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.mbx-story-capabilities {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;

}


.mbx-story-capabilities span {

    padding:
        8px 11px;

    border:
        1px solid #E0E5EF;

    border-radius: 30px;

    background: #FAFBFD;

    color: #6C778C;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .4px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        color .3s ease,
        background .3s ease;

}


.mbx-story-capabilities span:hover {

    transform:
        translateY(-3px);

    color: var(--mbx-blue);

    border-color:
        rgba(36, 93, 232, .25);

    background: #fff;

}


/* =========================================================
   OUTCOME
========================================================= */

.mbx-story-result {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 40px;

    padding-left: 16px;

    border-left:
        2px solid var(--mbx-blue);

}


.mbx-story-result small {

    color: #9AA3B4;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.mbx-story-result strong {

    max-width: 420px;

    color: var(--mbx-navy);

    font-size: 13px;

    line-height: 1.5;

}


/* =========================================================
   VISUAL
========================================================= */

.mbx-story-visual {

    position: relative;

    height: 590px;

    overflow: hidden;

    border-radius: 30px;

    background: #EEF1F8;

    box-shadow:
        0 35px 100px rgba(24, 35, 95, .10);

    clip-path:
        inset(7% 7% 7% 7% round 30px);

    transition:
        clip-path 1s cubic-bezier(.2, .7, .2, 1),
        box-shadow .8s ease;

}


.mbx-story-chapter.active .mbx-story-visual {

    clip-path:
        inset(0 0 0 0 round 30px);

    box-shadow:
        0 45px 120px rgba(24, 35, 95, .15);

}


.mbx-story-visual img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform:
        scale(1.08);

    opacity: .8;

    filter:
        saturate(.82) contrast(1.04);

    transition:
        transform 1.3s cubic-bezier(.2, .7, .2, 1),
        filter 1s ease,
        opacity 1s ease;

}


.mbx-story-chapter.active .mbx-story-visual img {

    transform:
        scale(1);

    opacity: 1;

    filter:
        saturate(.95) contrast(1.03);

}


/* =========================================================
   VISUAL GLOW
========================================================= */

.mbx-visual-glow {

    position: absolute;

    z-index: 2;

    width: 350px;

    height: 350px;

    right: -120px;

    bottom: -130px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(112, 69, 232, .35),
            transparent 68%);

    filter: blur(30px);

    pointer-events: none;

}


/* =========================================================
   VISUAL OVERLAY
========================================================= */

.mbx-visual-overlay {

    position: absolute;

    z-index: 5;

    left: 30px;

    right: 30px;

    bottom: 30px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding:
        22px;

    border:
        1px solid rgba(255, 255, 255, .2);

    border-radius: 18px;

    background:
        rgba(24, 35, 95, .42);

    backdrop-filter:
        blur(15px);

    transform:
        translateY(15px);

    opacity: .65;

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.mbx-story-chapter.active .mbx-visual-overlay {

    transform:
        translateY(0);

    opacity: 1;

}


.mbx-visual-overlay span {

    display: block;

    color:
        rgba(255, 255, 255, .65);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.mbx-visual-overlay strong {

    display: block;

    margin-top: 4px;

    color: #fff;

    font-size: 25px;

    letter-spacing: -1px;

}


/* =========================================================
   ENDING
========================================================= */

.mbx-story-ending {

    padding:
        150px 0 180px;

    background:
        #F7F8FC;

}


.mbx-ending-line {

    width: 100%;

    height: 1px;

    margin-bottom: 70px;

    background:
        linear-gradient(90deg,
            var(--mbx-blue),
            var(--mbx-violet),
            transparent);

}


.mbx-ending-content {

    max-width: 1000px;

}


.mbx-ending-content small {

    color: var(--mbx-violet);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.mbx-ending-content h2 {

    margin:
        18px 0;

    color: var(--mbx-navy);

    font-size:
        clamp(50px, 7vw, 100px);

    line-height: .9;

    letter-spacing: -6px;

}


.mbx-ending-content h2 strong {

    display: block;

    background:
        linear-gradient(90deg,
            var(--mbx-blue),
            var(--mbx-violet));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.mbx-ending-content p {

    max-width: 480px;

    margin: 30px 0;

    color: var(--mbx-muted);

    font-size: 15px;

    line-height: 1.8;

}


.mbx-ending-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        7px 8px 7px 20px;

    border-radius: 50px;

    color: #fff;

    background:
        linear-gradient(135deg,
            var(--mbx-blue),
            var(--mbx-violet));

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(36, 93, 232, .18);

}


.mbx-ending-content a span {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .14);

    font-size: 16px;

    transition:
        transform .3s ease;

}


.mbx-ending-content a:hover span {

    transform:
        rotate(45deg);

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px) {

    .mbx-story-grid,
    .mbx-story-grid.reverse {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;

    }


    .mbx-story-progress {

        left: 15px;

    }


    .mbx-story-copy h3 {

        font-size: 48px;

    }


    .mbx-story-visual {

        height: 500px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px) {

    .mbx-story-container {

        width:
            calc(100% - 38px);

    }


    .mbx-story-intro {

        padding:
            100px 0 70px;

    }


    .mbx-story-main-title {

        font-size:
            52px;

        letter-spacing: -4px;

    }


    .mbx-story-intro-text {

        font-size: 13px;

    }


    .mbx-story-progress {

        display: none;

    }


    .mbx-story-chapter {

        min-height: auto;

        padding:
            75px 0;

        opacity: 1;

        transform: none;

    }


    .mbx-story-grid,
    .mbx-story-grid.reverse {

        display: flex;

        flex-direction: column;

        gap: 45px;

    }


    .mbx-story-grid.reverse .mbx-story-copy {

        order: 1;

    }


    .mbx-story-grid.reverse .mbx-story-visual {

        order: 2;

    }


    .mbx-story-copy {

        padding-left: 0;

    }


    .mbx-story-number {

        position: relative;

        left: auto;

        top: auto;

        margin-bottom: -10px;

        font-size: 90px;

        letter-spacing: -7px;

    }


    .mbx-story-copy h3 {

        font-size: 45px;

        letter-spacing: -3px;

    }


    .mbx-story-description {

        font-size: 13px;

    }


    .mbx-story-visual {

        width: 100%;

        height: 420px;

        clip-path:
            inset(0 round 22px);

        border-radius: 22px;

    }


    .mbx-story-visual img {

        transform: scale(1);

    }


    .mbx-story-result {

        margin-top: 30px;

    }


    .mbx-story-ending {

        padding:
            90px 0 110px;

    }


    .mbx-ending-content h2 {

        font-size: 50px;

        letter-spacing: -3px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce) {

    .mbx-services-story * {

        transition: none !important;

        animation: none !important;

    }

}

/* =========================================================
   MAXBLO — SERVICES HERO
   DARK DIGITAL GROWTH THEME
========================================================= */

.mf-services-hero {

    position: relative;

    min-height: 900px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        #060B24;

    color: #ffffff;

}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.mf-services-hero-bg {

    position: absolute;

    inset: 0;

    z-index: 0;

    overflow: hidden;

}


.mf-services-hero-bg img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    opacity: .88;

    transform: scale(1.035);

    filter:
        saturate(1.08) contrast(1.05);

    animation:
        mfServicesHeroZoom 12s ease-in-out infinite alternate;

}


@keyframes mfServicesHeroZoom {

    from {
        transform: scale(1.035);
    }

    to {
        transform: scale(1.085);
    }

}


/* =========================================================
   OVERLAY
========================================================= */

.mf-services-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(90deg,
            rgba(4, 8, 28, .98) 0%,
            rgba(5, 10, 34, .94) 28%,
            rgba(6, 12, 40, .70) 53%,
            rgba(5, 10, 30, .22) 78%,
            rgba(5, 10, 30, .35) 100%);

}


/* =========================================================
   BOTTOM DARK FADE
========================================================= */

.mf-services-hero-overlay::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 230px;

    background:
        linear-gradient(to bottom,
            transparent,
            #060B24);

}


/* =========================================================
   GRID
========================================================= */

.mf-services-hero-grid {

    position: absolute;

    inset: 0;

    z-index: 2;

    opacity: .24;

    pointer-events: none;

    background-image:

        linear-gradient(rgba(100, 135, 255, .055) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(100, 135, 255, .055) 1px,
            transparent 1px);

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent 90%);

}


/* =========================================================
   MOVING LIGHT
========================================================= */

.mf-services-light {

    position: absolute;

    z-index: 2;

    top: -30%;

    left: 58%;

    width: 2px;

    height: 160%;

    background:

        linear-gradient(to bottom,
            transparent,
            rgba(55, 117, 255, .65),
            rgba(112, 69, 232, .45),
            transparent);

    filter:
        blur(1px);

    opacity: .5;

    transform:
        rotate(16deg);

    animation:
        mfServicesLightMove 7s ease-in-out infinite;

}


@keyframes mfServicesLightMove {

    0% {

        opacity: .1;

        transform:
            translateX(-80px) rotate(16deg);

    }

    50% {

        opacity: .7;

    }

    100% {

        opacity: .1;

        transform:
            translateX(180px) rotate(16deg);

    }

}


/* =========================================================
   CONTENT
========================================================= */

.mf-services-hero .container {

    position: relative;

    z-index: 5;

}


.mf-services-hero-content {

    position: relative;

    max-width: 950px;

    padding:
        170px 0 125px;

}


/* =========================================================
   EYEBROW
========================================================= */

.mf-services-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    color:
        #7DA0FF;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        mfServicesReveal .8s .15s cubic-bezier(.2, .8, .2, 1) forwards;

}


.mf-services-eyebrow>span {

    width: 45px;

    height: 1px;

    background:

        linear-gradient(90deg,
            #245DE8,
            #7045E8);

}


.mf-services-eyebrow-right {

    width: 32px !important;

    background:
        linear-gradient(90deg,
            #7045E8,
            transparent) !important;

}


/* =========================================================
   TITLE
========================================================= */

.mf-services-title {

    margin: 0;

    color: #ffffff !important;

    font-size:
        clamp(65px, 8vw, 128px);

    line-height: .86;

    letter-spacing:
        -7px;

    font-weight:
        800;

    opacity: 0;

    transform:
        translateY(45px);

    animation:
        mfServicesReveal 1s .28s cubic-bezier(.2, .8, .2, 1) forwards;

}


.mf-services-title strong {

    display: block;

    background:

        linear-gradient(90deg,
            #245DE8 0%,
            #3948D0 45%,
            #7045E8 100%);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.mf-services-description {

    max-width: 670px;

    margin:
        38px 0 0;

    color:
        rgba(255, 255, 255, .67) !important;

    font-size: 16px;

    line-height: 1.85;

    opacity: 0;

    transform:
        translateY(25px);

    animation:
        mfServicesReveal .9s .5s cubic-bezier(.2, .8, .2, 1) forwards;

}


/* =========================================================
   BUTTONS
========================================================= */

.mf-services-actions {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 42px;

    opacity: 0;

    transform:
        translateY(25px);

    animation:
        mfServicesReveal .9s .65s cubic-bezier(.2, .8, .2, 1) forwards;

}


.mf-services-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 60px;

    padding:
        0 27px;

    border-radius:
        50px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}


/* PRIMARY */

.mf-services-btn-primary {

    color: #ffffff !important;

    background:

        linear-gradient(135deg,
            #245DE8,
            #7045E8);

    box-shadow:

        0 15px 45px rgba(36, 93, 232, .25);

}


.mf-services-btn-primary span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .14);

    transition:
        transform .35s ease;

}


.mf-services-btn-primary:hover {

    color: #ffffff !important;

    transform:
        translateY(-4px);

    box-shadow:

        0 22px 55px rgba(36, 93, 232, .38);

}


.mf-services-btn-primary:hover span {

    transform:
        rotate(45deg);

}


/* OUTLINE */

.mf-services-btn-outline {

    color:
        rgba(255, 255, 255, .9) !important;

    border:
        1px solid rgba(255, 255, 255, .25);

    background:
        rgba(255, 255, 255, .025);

    backdrop-filter:
        blur(10px);

}


.mf-services-btn-outline:hover {

    color: #ffffff !important;

    border-color:
        rgba(100, 140, 255, .8);

    background:
        rgba(36, 93, 232, .12);

    transform:
        translateY(-4px);

}


/* =========================================================
   META
========================================================= */

.mf-services-meta {

    display: grid;

    grid-template-columns:
        1fr 1fr auto;

    align-items: end;

    gap: 40px;

    margin-top: 115px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, .13);

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        mfServicesReveal .9s .8s cubic-bezier(.2, .8, .2, 1) forwards;

}


.mf-services-location {

    display: flex;

    align-items: center;

    gap: 14px;

}


.mf-services-meta-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        #3D74FF;

    box-shadow:
        0 0 15px rgba(61, 116, 255, .8);

    animation:
        mfServicesPulse 2s ease-in-out infinite;

}


@keyframes mfServicesPulse {

    0%,
    100% {

        opacity: .4;

        transform: scale(.8);

    }

    50% {

        opacity: 1;

        transform: scale(1.15);

    }

}


.mf-services-location div {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.mf-services-location small {

    color:
        rgba(255, 255, 255, .34);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.mf-services-location strong {

    color:
        rgba(255, 255, 255, .8);

    font-size: 10px;

    letter-spacing: 1px;

}


.mf-services-scroll {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color:
        rgba(255, 255, 255, .36);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.mf-services-scroll span {

    width: 45px;

    height: 1px;

    background:

        linear-gradient(90deg,
            #245DE8,
            transparent);

}


.mf-services-number {

    color: #ffffff;

    font-size: 28px;

    font-weight: 700;

    line-height: 1;

}


.mf-services-number span {

    color:
        rgba(255, 255, 255, .3);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   FLOATING LABELS
========================================================= */

.mf-services-floating {

    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius: 30px;

    color:
        rgba(255, 255, 255, .55);

    background:
        rgba(6, 11, 30, .55);

    backdrop-filter:
        blur(12px);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;

    pointer-events: none;

}


.mf-services-floating span {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #4D7DFF;

    box-shadow:
        0 0 12px rgba(77, 125, 255, .9);

}


.mf-services-floating-one {

    top: 32%;

    right: 30%;

    animation:
        mfServicesFloatOne 5s ease-in-out infinite;

}


.mf-services-floating-two {

    top: 58%;

    right: 10%;

    animation:
        mfServicesFloatTwo 6s ease-in-out infinite;

}


.mf-services-floating-three {

    bottom: 20%;

    right: 23%;

    animation:
        mfServicesFloatOne 7s ease-in-out infinite reverse;

}


@keyframes mfServicesFloatOne {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


@keyframes mfServicesFloatTwo {

    0%,
    100% {

        transform:
            translate(0, 0);

    }

    50% {

        transform:
            translate(-10px, 10px);

    }

}


/* =========================================================
   CORNER
========================================================= */

.mf-services-corner {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 120px;

    height: 120px;

    z-index: 5;

    border-top:
        1px solid rgba(80, 120, 255, .3);

    border-left:
        1px solid rgba(80, 120, 255, .3);

    opacity: .5;

}


/* =========================================================
   REVEAL
========================================================= */

@keyframes mfServicesReveal {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px) {

    .mf-services-hero {

        min-height:
            800px;

    }


    .mf-services-hero-content {

        padding:
            140px 0 90px;

    }


    .mf-services-title {

        font-size:
            clamp(58px, 10vw, 90px);

        letter-spacing:
            -5px;

    }


    .mf-services-floating {

        display: none;

    }


    .mf-services-meta {

        margin-top:
            80px;

    }

}


@media(max-width:767px) {

    .mf-services-hero {

        min-height:
            760px;

    }


    .mf-services-hero-bg img {

        object-position:
            62% center;

    }


    .mf-services-hero-overlay {

        background:

            linear-gradient(90deg,
                rgba(4, 8, 28, .98),
                rgba(5, 10, 34, .88));

    }


    .mf-services-hero-content {

        padding:
            120px 0 70px;

    }


    .mf-services-title {

        font-size:
            56px;

        line-height:
            .9;

        letter-spacing:
            -4px;

    }


    .mf-services-description {

        max-width:
            100%;

        font-size:
            14px;

    }


    .mf-services-actions {

        flex-wrap:
            wrap;

        gap:
            10px;

    }


    .mf-services-btn {

        min-height:
            54px;

        padding:
            0 20px;

        font-size:
            12px;

    }


    .mf-services-meta {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;

        margin-top:
            65px;

    }


    .mf-services-scroll {

        justify-content:
            flex-start;

    }


    .mf-services-number {

        display:
            none;

    }

}


@media(prefers-reduced-motion:reduce) {

    .mf-services-hero *,
    .mf-services-hero img {

        animation:
            none !important;

        transition:
            none !important;

    }

}