@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --mr-fx-bg: #4d148c;
    --mr-fx-fg: rgba(255, 255, 255, 0.92);
    --mr-fx-preloader-color: #4d148c;
    --mr-fx-panel-bg: rgba(34, 10, 58, 0.72);
    --mr-fx-panel-border: rgba(255, 255, 255, 0.16);
    --mr-fx-panel-shadow: 0 24px 80px rgba(10, 0, 25, 0.38);
    --mr-fx-cta-bg: #ff6600;
    --mr-fx-cta-fg: #ffffff;

    --mr-fx-header-height: 0px;
    --mr-fx-sub-header-height: 0px;
    --mr-fx-logo-offset: 2em;
    --mr-fx-visible-height: calc(100dvh - var(--mr-fx-header-height));
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html img, body img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html ::-moz-focus-inner,
body ::-moz-focus-inner {
    border: 0;
}

html :focus,
body :focus {
    outline: none;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header-asv {
    position: relative !important;
    z-index: 50 !important;
}

.doc-container-footer {
    position: relative !important;
    z-index: 50 !important;
}

.doc-header-wrapper {
    position: relative !important;
    z-index: 52 !important;
}

.header-content {
    position: relative !important;
    z-index: 50 !important;
}

.doc-content {
    padding-bottom: 0 !important;
}

/***/

.mr_fx_is-dragging {
    cursor: grabbing;
}

.mr_fx_app.mr_fx_has-open-panel {
    overflow: hidden;
}

.mr_fx_app button,
.mr_fx_app a {
    -webkit-tap-highlight-color: transparent;
}

#mr_fx_app {
    position: relative;
    width: 100%;
    overflow: hidden;
    
    background: var(--mr-fx-bg);
    color: var(--mr-fx-fg);
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 2vh;
    font-variation-settings: "wdth" 100;

    cursor: grab;
}

.mr_fx_canvas {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;


}

.mr_fx_headline {
    position: absolute;

    pointer-events: none;

    top: 0;
    left: 0;
    width: 100%;
    height: 25%;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mr_fx_app h1 {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-weight: bold;
    font-size: 2em;
}

.mr_fx_rotate-icon {
    position: absolute;

    pointer-events: none;

    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mr_fx_scroll-icon {
    position: absolute;

    pointer-events: none;

    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#mr_fx_c {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

#mr_fx_c.mr_fx_is-hovering-sprite {
    cursor: pointer;
}

.mr_fx_details-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 4, 24, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 15;
}

.mr_fx_details-backdrop.mr_fx_is-visible {
    opacity: 1;
    pointer-events: none;
}

.mr_fx_details-panel {
    position: absolute;
    top: 24px;
    right: 24px;
    bottom: 24px;
    width: min(440px, calc(100vw - 32px));
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--mr-fx-panel-border);
    border-radius: 28px;
    background: var(--mr-fx-panel-bg);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow: var(--mr-fx-panel-shadow);
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms ease, opacity 220ms ease;
    z-index: 20;
}

.mr_fx_details-panel.mr_fx_is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mr_fx_details-panel__inner {
    min-height: 0;
    height: 100%;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 14px;
}

.mr_fx_details-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--mr-fx-fg);
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.mr_fx_details-eyebrow {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding-right: 56px;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mr-fx-cta-bg);
}

.mr_fx_details-title {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding-right: 56px;
    font-size: clamp(1.7em, 2vw, 2.3em);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.mr_fx_details-body {
    min-height: 0;
    overflow: auto;
    padding-right: 8px;
    color: var(--mr-fx-fg);
    line-height: 1.6;
    font-size: 1em;
}

.mr_fx_details-body p {
    font-family: "Roboto", sans-serif;
    margin: 0 0 1em;
}

.mr_fx_details-footer {
    font-family: "Roboto", sans-serif;
    padding-top: 4px;
}

.mr_fx_details-footnote, .mr_fx_details-footnote a {
    font-family: "Roboto", sans-serif;
    font-size: 0.7em !important;
}

.mr_fx_details-body a {
    font-family: "Roboto", sans-serif;
    color: var(--mr-fx-cta-fg);
    font-weight: bold;
    text-decoration: none;
}

.mr_fx_details-body a:hover {
    text-decoration: underline;
}

.mr_fx_details-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 0px;
    background: var(--mr-fx-cta-bg) !important;
    color: var(--mr-fx-cta-fg) !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    margin: 0 0 1em;
}

.mr_fx_fedex-logo {
    position: absolute;

    left: 2em;
    top: calc(2em + var(--mr-fx-sub-header-height));
}

@keyframes mr_fx_infoPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
    70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.mr_fx_info-button {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(34, 10, 58, 0.65);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: transform 180ms ease, background 180ms ease;
    animation: mr_fx_infoPulse 3s infinite;
}

.mr_fx_info-button:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.12);
}

.mr_fx_info-button__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    pointer-events: none;
}

@media (max-width: 820px) {
    .mr_fx_info-button {
        left: auto;
        right: 2em;
        bottom: auto;
        top: 2em;
        width: 48px;
        height: 48px;
    }

    .mr_fx_info-button__icon {
        width: 22px;
        height: 22px;
    }



    .mr_fx_headline {
        left: 10%;
        width: 80%;
        height: 40%;
    }

    .mr_fx_app h1 {
        font-size: 24px;
    }
}

/*** PRELOADER ***/

@keyframes mr_fx_a-preloader-rotation {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.mr_fx_preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.5s;
    background-color: var(--mr-fx-preloader-color);
    z-index: 50;
}

.mr_fx_preloader-image {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    width: 100px;
    height: 100px;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: mr_fx_a-preloader-rotation;
    animation-duration: 2s;
    animation-delay: 0s;
}

.mr_fx_content {
    position: relative;

    pointer-events: none;

    background: linear-gradient(180deg, rgba(77, 22, 140, 0.9) 0%, rgba(77, 22, 140, 0.7) 40%, rgba(77, 22, 140, 0.0) 50%, rgba(77, 22, 140, 0.0) 100%);

    width: 100%;
    height: calc(var(--mr-fx-visible-height) * 2.5);

    display: grid;
    grid-template-columns: auto;
    grid-template-rows: var(--mr-fx-visible-height) 1fr var(--mr-fx-visible-height);
    grid-template-areas: "intro" "spacer" "main";
}

.mr_fx_content_intro {
    position: relative;

    grid-area: intro;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.mr_fx_content_intro h1 {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: 5em;
    line-height: 1em;
    margin: 0;
    letter-spacing: -0.05em;
    font-weight: bold;
}
.mr_fx_content_intro h4 {
    font-family: "Roboto", sans-serif;
    margin: 0;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mr-fx-cta-bg);
}
.mr_fx_content_intro p {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: 1.4em;
    max-width: 820px;
    line-height: 1.5em;
}

.mr_fx_content_intro_button {
    display: block;

    pointer-events: all;
    cursor: pointer;
    background-color: var(--mr-fx-cta-bg);
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    padding: 1em 2em;
    border-radius: 0;

    transition: background-color, color;
    transition-timing-function: ease;
    transition-duration: 0.5s;
}

.mr_fx_content_intro_button:hover {
    color: var(--mr-fx-cta-bg);
    background-color: var(--mr-fx-cta-fg);
}

.mr_fx_content_spacer {
    position: relative;
    grid-area: spacer;
}

.mr_fx_content_main {
    position: relative;
    grid-area: main;
}

.mr_fx_hud {
    position: fixed;

    pointer-events: none;

    top: var(--mr-fx-header-height);
    left: 0;

    width: 100%;
    height: var(--mr-fx-visible-height);
}

.mr_fx_hud_plane {
    position: absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-100%);
}

.mr_fx_hud_plane img {
    width: 80%;
    max-width: 1000px;
}

.mr_fx_footer {
    position: absolute;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;

    left: 0px;
    bottom: 0px;

    width: 100%;
    height: 60px;

    background-color: #360b60;
}

.mr_fx_footer_plane {
    width: 50vw;
    max-width: 300px;
    height: auto;

    transform: translateY(-10%);
}

.mr_fx_footer h3 {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-weight: normal;
    font-size: clamp(14px, 1.3vw, 26px);
    text-align: center;
}

.mr_fx_footer a {
    font-family: "Roboto", sans-serif;
    display: inline-flex;

    pointer-events: all;

    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 32px;
    border-radius: 0px;
    background: var(--mr-fx-cta-bg) !important;
    color: var(--mr-fx-cta-fg) !important;
    font-weight: 700;
    font-size: clamp(14px, 1.3vw, 20px);
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

/*** PRELOADER ***/

@media (max-width: 820px) {


    .mr_fx_scroll-icon {
        display: none;
    }

    .mr_fx_content_intro {
        padding-top: 100px;
    }

    .mr_fx_content_intro_button {
        display: block;
    }

    .mr_fx_content_intro h1 {
        font-size: 2.3em;
        line-height: 1em;
        margin: 0;
        letter-spacing: -0.05em;
    }
    .mr_fx_content_intro h4 {
        margin: 0;
        font-size: 0.78em;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--mr-fx-cta-bg);
    }
    .mr_fx_content_intro p {
        padding: 0px 40px;

        font-size: 1.0em;
        max-width: 820px;
        line-height: 1.5em;
    }

    .mr_fx_footer {
        padding: 10px;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;

        height: auto;
    }

    .mr_fx_footer_plane {
        display: none;
    }

    .mr_fx_footer h3 {
        display: none;
    }
    .mr_fx_details-panel {
        top: auto;
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
        max-height: min(68vh, 560px);
        border-radius: 24px;
        transform: translateY(calc(100% + 28px));
    }

    .mr_fx_details-panel.mr_fx_is-open {
        transform: translateY(0);
    }

    .mr_fx_details-panel__inner {
        gap: 12px;
    }

    .mr_fx_details-title {
        font-size: clamp(1.4em, 6vw, 1.9em);
    }

    .mr_fx_details-body {
        font-size: 0.96em;
    }

    .mr_fx_details-button {
        width: 100%;
    }
}