:root {
    --mx-navy: #153e6b;
    --mx-navy-2: #1B4180;
    --mx-blue: #005bab;
    --mx-blue-2: #2F6EC6;
    --mx-sky: #00AEEF;
    --mx-tint: #E4F0FE;
    --mx-ink: #1d2530;
    --mx-muted: #5c6b7a;
    --mx-bg-soft: #f4f8fc;
    --mx-hair: #e3eaf2;
    --mx-white: #fff;
    --mx-radius: 18px;
    --mx-radius-sm: 12px;
    --mx-shadow: 0 10px 30px rgba(21, 62, 107, .08);
    --mx-shadow-lg: 0 24px 60px rgba(21, 62, 107, .14);
    --mx-header-h: 86px;
    --mx-header-h-scrolled: 66px;
    --mx-ease: cubic-bezier(.22, .61, .36, 1)
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--mx-header-h)+14px)
}

html,
body {
    overflow-x: clip
}

@supports not (overflow-x:clip) {
    html,
    body {
        overflow-x: hidden
    }
}

body {
    color: var(--mx-ink)
}

@media (max-width:767.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --cnvs-gutter-x: 1.5rem
    }
}

img {
    max-width: 100%
}

h1,
h2,
h3,
h4,
.mx-display {
    letter-spacing: .01em;
    color: var(--mx-ink)
}

.mx-section-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px)
}

.mx-section-head .mx-tick {
    width: 3px;
    height: 34px;
    background: linear-gradient(var(--mx-sky), var(--mx-blue));
    margin: 0 auto 18px;
    border-radius: 2px
}

.mx-section-head h2 {
    font-family: "Oswald", var(--cnvs-primary-font, "Inter"), sans-serif;
    font-weight: 600;
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 10px
}

.mx-section-head .mx-sub {
    color: var(--mx-muted);
    max-width: 62ch;
    margin: 0 auto;
    font-size: .95rem;
    line-height: 1.65
}

.mx-section {
    padding: clamp(52px, 7vw, 96px) 0
}

.mx-section-alt {
    background: var(--mx-bg-soft)
}

.mx-btn {
    --btn-bg: var(--mx-blue);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border: 0;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s var(--mx-ease), box-shadow .3s var(--mx-ease), background .3s, color .3s, border-color .3s
}

.mx-btn svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto
}

.mx-btn:hover {
    transform: translateY(-2px)
}

.mx-btn:focus-visible {
    outline: 3px solid rgba(0, 174, 239, .55);
    outline-offset: 2px
}

.mx-btn-primary {
    background: linear-gradient(120deg, var(--mx-blue) 0%, var(--mx-sky) 130%);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(0, 91, 171, .32)
}

.mx-btn-primary:hover {
    box-shadow: 0 14px 30px rgba(0, 91, 171, .42);
    color: #fff
}

.mx-btn-dark {
    background: var(--mx-navy);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(21, 62, 107, .28)
}

.mx-btn-dark:hover {
    background: var(--mx-navy-2)
}

.mx-btn-ghost {
    background: rgba(0, 91, 171, .07);
    color: var(--mx-navy) !important;
    border: 1px solid rgba(0, 91, 171, .18)
}

.mx-btn-ghost:hover {
    background: rgba(0, 91, 171, .13)
}

.mx-btn-outline-light {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, .55)
}

.mx-btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff
}

.mx-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transform: scale(0);
    animation: mx-ripple .6s ease-out forwards;
    pointer-events: none
}

@keyframes mx-ripple {
    to {
        transform: scale(4);
        opacity: 0
    }
}

.mx-btn.is-loading {
    pointer-events: none;
    opacity: .85
}

.mx-btn.is-loading .mx-btn-label {
    visibility: hidden
}

.mx-btn .mx-spinner {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mx-spin .7s linear infinite
}

.mx-btn.is-loading .mx-spinner {
    display: block
}

@keyframes mx-spin {
    to {
        transform: rotate(360deg)
    }
}

.mx-skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 3000;
    background: var(--mx-navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    transition: top .25s
}

.mx-skip-link:focus {
    top: 12px;
    color: #fff
}

.mx-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1400;
    background: rgb(255 255 255 / 29%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(21, 62, 107, .08);
    transition: box-shadow .35s var(--mx-ease), background .35s var(--mx-ease)
}

.mx-header.is-scrolled {
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 30px rgba(21, 62, 107, .12)
}

.mx-nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 40px);
    height: var(--mx-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    transition: height .35s var(--mx-ease)
}

.mx-header.is-scrolled .mx-nav-inner {
    height: var(--mx-header-h-scrolled)
}

.mx-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto
}

.mx-logo img {
    height:70px;
    width: auto;
    display: block;
    transition: height .35s var(--mx-ease);
    image-rendering: -webkit-optimize-contrast
}

.mx-header.is-scrolled .mx-logo img {
    height: 50px;
}

.mx-menu {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 14px);
    list-style: none;
    margin: 0;
    padding: 0
}

.mx-menu-link {
    position: relative;
    display: block;
    padding: 10px 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--mx-ink);
    letter-spacing: .01em;
    white-space: nowrap;
    transition: color .25s
}

.mx-menu-link::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 3px;
    height: 2.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--mx-sky), var(--mx-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--mx-ease)
}

.mx-menu-link:hover,
.mx-menu-link.is-active {
    color: var(--mx-blue)
}

.mx-menu-link:hover::after,
.mx-menu-link.is-active::after {
    transform: scaleX(1)
}

.mx-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto
}

.mx-nav-call {
    padding: 11px 18px;
    font-size: .85rem
}

.mx-nav-quote {
    padding: 12px 22px;
    font-size: .85rem
}

.mx-burger {
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    color: var(--mx-navy)
}

.mx-burger-label {
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.mx-burger-box {
    position: relative;
    width: 26px;
    height: 18px;
    display: block
}

.mx-burger-line,
.mx-burger-line::before,
.mx-burger-line::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    border-radius: 2px;
    background: currentColor;
    content: '';
    transition: transform .3s var(--mx-ease), top .3s var(--mx-ease), opacity .2s
}

.mx-burger-line {
    top: 8px
}

.mx-burger-line::before {
    top: -8px
}

.mx-burger-line::after {
    top: 8px
}

.mx-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1600;
    visibility: hidden;
    pointer-events: none
}

.mx-mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto
}

.mx-mm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, .45);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .4s var(--mx-ease)
}

.mx-mobile-menu.is-open .mx-mm-backdrop {
    opacity: 1
}

.mx-mm-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(420px, 100%);
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #10315a 0%, var(--mx-navy) 55%, #0d2748 100%);
    transform: translateX(102%);
    transition: transform .45s var(--mx-ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .3)
}

.mx-mobile-menu.is-open .mx-mm-panel {
    transform: translateX(0)
}

.mx-mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.mx-mm-logo {
    height: 50px;
    width: auto;
    background: rgba(255, 255, 255, .95);
    padding: 6px 10px;
    border-radius: 9px
}

.mx-mm-close {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    transition: transform .35s var(--mx-ease), background .25s, border-color .25s
}

.mx-mm-close svg {
    width: 20px;
    height: 20px
}

.mx-mm-close:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #fff;
    transform: rotate(90deg)
}

.mx-mm-nav {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 14px 14px 20px
}

.mx-mm-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.mx-mm-list li {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .4s var(--mx-ease), transform .4s var(--mx-ease);
    transition-delay: calc(.06s * var(--i, 1)+.1s)
}

.mx-mobile-menu.is-open .mx-mm-list li {
    opacity: 1;
    transform: none
}

.mx-mm-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 14px;
    margin: 2px 0;
    border-radius: 14px;
    color: rgba(255, 255, 255, .92);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .25s, color .25s, padding-left .25s;
    min-height: 54px
}

.mx-mm-ico {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: var(--mx-sky)
}

.mx-mm-ico svg {
    width: 20px;
    height: 20px
}

.mx-mm-arrow {
    width: 17px;
    height: 17px;
    margin-left: auto;
    opacity: .55;
    transition: transform .25s, opacity .25s
}

.mx-mm-link:hover,
.mx-mm-link.is-active {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding-left: 18px
}

.mx-mm-link.is-active .mx-mm-ico {
    background: var(--mx-sky);
    color: #fff
}

.mx-mm-link:hover .mx-mm-arrow {
    transform: translateX(4px);
    opacity: 1
}

.mx-mm-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px calc(18px+env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(8, 22, 42, .55);
    position: sticky;
    bottom: 0
}

body.mx-mm-open {
    overflow: hidden
}

.mx-hero {
    position: relative;
    padding: calc(var(--mx-header-h)+clamp(36px, 6vw, 76px)) 0 clamp(48px, 6vw, 84px);
    background: radial-gradient(1000px 500px at 88% -10%, rgba(0, 174, 239, .14), transparent 60%), radial-gradient(800px 420px at -10% 110%, rgba(0, 91, 171, .10), transparent 60%), linear-gradient(180deg, #f2f7fd 0%, #fbfdff 70%);
    overflow: hidden
}

.mx-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

.mx-hero-shape.s1 {
    width: 130px;
    height: 130px;
    top: 16%;
    right: 6%;
    border: 2px dashed rgba(0, 91, 171, .22);
    animation: mx-float 9s ease-in-out infinite
}

.mx-hero-shape.s2 {
    width: 56px;
    height: 56px;
    bottom: 14%;
    left: 4%;
    background: linear-gradient(140deg, rgba(0, 174, 239, .25), rgba(0, 91, 171, .12));
    animation: mx-float 7s ease-in-out 1s infinite
}

.mx-hero-shape.s3 {
    width: 22px;
    height: 22px;
    top: 24%;
    left: 12%;
    background: rgba(0, 174, 239, .3);
    animation: mx-float 6s ease-in-out .5s infinite
}

@keyframes mx-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }
    50% {
        transform: translateY(-18px) rotate(8deg)
    }
}

.mx-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px)
}

.mx-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 91, 171, .08);
    border: 1px solid rgba(0, 91, 171, .15);
    color: var(--mx-blue);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 40px;
    margin-bottom: 22px
}

.mx-hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mx-sky)
}

.mx-hero h1 {
    font-family: "Oswald", "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.9rem);
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 18px
}

.mx-hero h1 .mx-grad {
    background: linear-gradient(100deg, var(--mx-blue) 10%, var(--mx-sky) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.mx-hero-lead {
    color: var(--mx-muted);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    line-height: 1.75;
    max-width: 54ch;
    margin-bottom: 30px
}

.mx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px
}

.mx-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 3vw, 44px);
    padding-top: 26px;
    border-top: 1px solid var(--mx-hair)
}

.mx-stat {
    min-width: 96px
}

.mx-stat b {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 600;
    color: var(--mx-navy);
    line-height: 1.1
}

.mx-stat span {
    font-size: .8rem;
    color: var(--mx-muted);
    letter-spacing: .05em;
    text-transform: uppercase
}

.mx-hero-media {
    position: relative
}

.mx-hero-media::before {
    content: '';
    position: absolute;
    inset: 10% -6% -8% 12%;
    background: linear-gradient(140deg, rgba(0, 174, 239, .16), rgba(0, 91, 171, .08));
    border-radius: 32px;
    transform: rotate(3deg)
}

.mx-hero-media img {
    position: relative;
    width: 100%;
    height: auto !important;
    border-radius: 24px;
    box-shadow: var(--mx-shadow-lg);
    object-fit: cover
}

.mx-hero-card {
    position: absolute;
    left: -14px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: var(--mx-shadow);
    border-radius: 16px;
    padding: 13px 18px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--mx-navy)
}

.mx-hero-card svg {
    width: 26px;
    height: 26px;
    color: var(--mx-sky);
    flex: 0 0 auto
}

.mx-card {
    background: #fff;
    border: 1px solid var(--mx-hair);
    border-radius: var(--mx-radius);
    box-shadow: var(--mx-shadow);
    transition: transform .35s var(--mx-ease), box-shadow .35s var(--mx-ease)
}

.mx-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mx-shadow-lg)
}

.mx-glass {
    background: rgba(255, 255, 255, .65);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .8)
}

.mx-feature-card {
    height: 100%;
    padding: 26px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--mx-hair);
    border-radius: var(--mx-radius);
    box-shadow: 0 4px 16px rgba(21, 62, 107, .05);
    transition: transform .35s var(--mx-ease), box-shadow .35s var(--mx-ease), border-color .35s
}

.mx-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--mx-shadow-lg);
    border-color: rgba(0, 174, 239, .35)
}

.mx-feature-ico {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(0, 174, 239, .12), rgba(0, 91, 171, .08));
    color: var(--mx-blue);
    transition: background .35s, color .35s, transform .35s var(--mx-ease)
}

.mx-feature-ico svg {
    width: 30px;
    height: 30px
}

.mx-feature-card:hover .mx-feature-ico {
    background: linear-gradient(150deg, var(--mx-blue), var(--mx-sky));
    color: #fff;
    /* transform: scale(1.06) rotate(-3deg) */
}

.mx-feature-card h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--mx-navy);
    margin: 0;
    line-height: 1.4
}

.mx-continent-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 40px !important;
    font-weight: 600;
    font-size: .88rem;
    color: var(--mx-ink);
    background: #fff;
    border: 1px solid var(--mx-hair);
    transition: all .3s var(--mx-ease)
}

.mx-continent-tabs .nav-link img {
    width: 21px;
    height: auto
}

.mx-continent-tabs .nav-link:hover {
    border-color: rgba(0, 91, 171, .4);
    transform: translateY(-1px)
}

.mx-continent-tabs .nav-link.active {
    background: linear-gradient(120deg, var(--mx-blue), var(--mx-blue-2));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(0, 91, 171, .28)
}

.mx-continent-tabs {
    gap: 8px
}

.iconlist li img.mx-flag {
    width: 21px;
    height: 15.75px;
    object-fit: cover;
    border-radius: 2.5px;
    box-shadow: 0 0 0 1px rgba(29, 37, 48, .12);
    margin-right: 8px;
    margin-top: -2px
}

.iconlist a[role="button"] {
    cursor: pointer;
    border-radius: 6px;
    padding: 2px 6px;
    margin-left: -6px;
    transition: background .25s, color .25s
}

.iconlist a[role="button"]:hover {
    background: rgba(0, 91, 171, .07);
    text-decoration: none !important;
    color: var(--mx-blue)
}

.iconlist a.ch-active {
    background: linear-gradient(120deg, var(--mx-blue), var(--mx-blue-2));
    color: #fff !important
}

.mxc-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin: 6px 0 16px;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mx-muted)
}

.mxc-legend>div {
    display: flex;
    align-items: center;
    gap: 7px
}

.mxc-dots {
    display: inline-flex;
    gap: 3px;
    vertical-align: middle
}

.mxc-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4E3F6;
    display: block
}

.mxc-dots i.on {
    background: #9FB8D6
}

.mxc-hero .mxc-dots i.on,
.mxc-legend .mxc-dots i.on {
    background: var(--mx-blue-2)
}

.mxc-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.mxc-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 820px;
    table-layout: fixed
}

.mxc-table col.c-feat {
    width: 24%
}

.mxc-table col.c-hero {
    width: 20%
}

.mxc-table col.c-comp {
    width: 14%
}

.mxc-table thead th {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 15px 10px;
    vertical-align: bottom;
    border: 0
}

.mxc-table th.h-feat {
    text-align: left;
    color: var(--mx-blue);
    background: var(--mx-white);
    border-bottom: 2px solid var(--mx-blue-2)
}

.mxc-table th.h-comp {
    text-align: center;
    color: #fff;
    background: var(--mx-blue-2)
}

.mxc-table th.h-comp:last-child {
    border-radius: 0 8px 0 0
}

.mxc-table th.h-hero {
    text-align: center;
    color: #fff;
    background: var(--mx-navy-2);
    border-radius: 10px 10px 0 0;
    padding-top: 26px;
    padding-bottom: 18px;
    font-size: .85rem;
    position: relative
}

.mxc-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: .55rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9EC3F2;
    white-space: nowrap
}

.mxc-table tbody td,
.mxc-table tbody th.mxc-feat {
    padding: 13px 10px;
    font-size: .86rem;
    border-bottom: 1px solid var(--mx-hair);
    text-align: center;
    vertical-align: middle
}

.mxc-table .mxc-feat {
    text-align: left;
    font-weight: 600;
    color: var(--mx-ink);
    font-size: .88rem;
    padding-left: 2px
}

.mxc-table td.mxc-comp {
    color: var(--mx-muted);
    font-weight: 500
}

.mxc-table td.mxc-hero {
    background: var(--mx-tint);
    border-left: 2px solid var(--mx-navy-2);
    border-right: 2px solid var(--mx-navy-2);
    color: var(--mx-ink);
    font-weight: 700
}

.mxc-table tbody tr:last-child td.mxc-hero {
    border-bottom: 2px solid var(--mx-navy-2);
    border-radius: 0 0 10px 10px
}

.mxc-table tbody tr:nth-child(even) td:not(.mxc-hero) {
    background: #ECF4FE
}

.mxc-val {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.mxc-table .mxc-feat .mxc-val {
    align-items: flex-start
}

.mxc-note {
    margin: 20px auto 0;
    font-size: .72rem;
    line-height: 1.6;
    color: var(--mx-muted);
    max-width: 70ch;
    text-align: center
}

@media (max-width:720px) {
    .mxc-scroller {
        overflow: visible
    }
    .mxc-table,
    .mxc-table thead,
    .mxc-table tbody,
    .mxc-table tr,
    .mxc-table td,
    .mxc-table th,
    .mxc-table col,
    .mxc-table colgroup {
        display: block;
        width: auto !important
    }
    .mxc-table {
        min-width: 0
    }
    .mxc-table thead {
        display: none
    }
    .mxc-table tbody tr {
        border: 1px solid var(--mx-hair);
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 12px;
        background: #fff;
        box-shadow: 0 4px 14px rgba(21, 62, 107, .05)
    }
    .mxc-table tbody tr:nth-child(even) td:not(.mxc-hero) {
        background: transparent
    }
    .mxc-table tbody td,
    .mxc-table tbody th.mxc-feat {
        border: 0 !important;
        padding: 0;
        text-align: left;
        background: transparent
    }
    .mxc-table .mxc-feat {
        font-family: "Oswald", sans-serif;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--mx-blue);
        margin-bottom: 10px
    }
    .mxc-table td.mxc-hero {
        background: var(--mx-tint);
        border: 0 !important;
        border-radius: 8px !important;
        padding: 9px 12px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .mxc-table td.mxc-comp {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 12px
    }
    .mxc-table td::before,
    .mxc-table th.mxc-feat::before {
        content: attr(data-label);
        font-size: .7rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--mx-muted);
        font-weight: 600
    }
    .mxc-table .mxc-feat::before {
        content: none !important
    }
    .mxc-val {
        flex-direction: row;
        align-items: center;
        gap: 8px
    }
}

.mx-work-card {
    position: relative;
    margin-bottom: 26px
}

.mx-work-media {
    position: relative;
    border-radius: var(--mx-radius);
    overflow: hidden;
    box-shadow: var(--mx-shadow);
    transition: transform .4s var(--mx-ease), box-shadow .4s var(--mx-ease)
}

.mx-work-card:hover .mx-work-media {
    transform: translateY(-6px);
    box-shadow: var(--mx-shadow-lg)
}

.mx-work-media>img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--mx-ease)
}

.mx-work-card:hover .mx-work-media>img {
    transform: scale(1.04)
}

.mx-work-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 30;
    background: rgba(255, 255, 255, .88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--mx-navy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12)
}

.mx-work-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mx-navy);
    text-align: center;
    margin: 16px 0 0
}

.mx-work-title small {
    display: block;
    font-size: .8rem;
    color: var(--mx-muted);
    font-weight: 500;
    margin-top: 3px
}

.twentytwenty-container {
    border-radius: var(--mx-radius)
}

.project-badge {
    display: inline-block;
    background: rgba(0, 91, 171, .08);
    border: 1px solid rgba(0, 91, 171, .16);
    color: var(--mx-blue);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 40px;
    margin-bottom: 16px
}

.project-title {
    font-family: "Oswald", "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    margin-bottom: 16px
}

.project-desc {
    color: var(--mx-muted);
    line-height: 1.8;
    margin-bottom: 14px !important
}

.project-info-card {
    background: #fff;
    border: 1px solid var(--mx-hair);
    border-radius: var(--mx-radius);
    box-shadow: var(--mx-shadow);
    padding: 10px 24px
}

.project-info-card .info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--mx-hair);
    font-size: .92rem
}

.project-info-card .info-row span {
    color: var(--mx-muted);
    font-weight: 500
}

.project-info-card .info-row strong {
    color: var(--mx-navy);
    text-align: right
}

.progress-item {
    position: relative
}

.progress-item .bg-number {
    position: absolute;
    top: -22px;
    left: 4px;
    z-index: 2;
    font-family: "Oswald", sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 91, 171, .45);
    pointer-events: none
}

.progress-item .project-gallery {
    display: block;
    border-radius: var(--mx-radius);
    overflow: hidden;
    box-shadow: var(--mx-shadow);
    transition: transform .35s var(--mx-ease), box-shadow .35s var(--mx-ease)
}

.progress-item .project-gallery:hover {
    transform: translateY(-6px);
    box-shadow: var(--mx-shadow-lg)
}

.progress-item .project-gallery img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--mx-ease)
}

.progress-item .project-gallery:hover img {
    transform: scale(1.05)
}

.progress-item .timeline-arrow {
    position: absolute;
    top: 50%;
    right: -26px;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--mx-blue);
    box-shadow: var(--mx-shadow)
}

@media (max-width:991.98px) {
    .progress-item .timeline-arrow {
        display: none
    }
}

.mx-contact-card {
    background: #fff;
    border: 1px solid var(--mx-hair);
    border-radius: var(--mx-radius);
    box-shadow: var(--mx-shadow-lg);
    padding: clamp(22px, 3vw, 38px)
}

.mx-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px
}

.mx-contact-ico {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(0, 174, 239, .12), rgba(0, 91, 171, .08));
    color: var(--mx-blue)
}

.mx-contact-ico svg {
    width: 22px;
    height: 22px
}

.mx-contact-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 2px 0 4px;
    color: var(--mx-navy)
}

.mx-contact-item p,
.mx-contact-item address {
    margin: 0;
    color: #1d2530;
    font-style: normal;
    line-height: 1.7;
    font-weight: 500;
}

.mx-contact-item a {
    color: var(--mx-ink);
    font-weight: 500
}

.mx-contact-item a:hover {
    color: var(--mx-blue)
}

.mx-field {
    margin-bottom: 18px
}

.mx-field label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 7px;
    color: var(--mx-ink)
}

.mx-field label .req {
    color: #dc3545
}

.mx-input {
    box-sizing: border-box;
    width: 100%;
    padding: 13px 16px;
    font-size: .95rem;
    color: var(--mx-ink);
    background: var(--mx-bg-soft);
    border: 1.5px solid var(--mx-hair);
    border-radius: var(--mx-radius-sm);
    transition: border-color .25s, box-shadow .25s, background .25s;
    -webkit-appearance: none;
    appearance: none
}

.mx-input:focus {
    outline: 0;
    background: #fff;
    border-color: var(--mx-sky);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, .14)
}

.mx-input.is-invalid {
    border-color: #dc3545;
    background: #fff5f5
}

.mx-field-error {
    display: none;
    color: #c22f3e;
    font-size: .8rem;
    margin-top: 6px;
    font-weight: 500
}

.mx-input.is-invalid~.mx-field-error {
    display: block
}

.mx-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.mx-modal.is-open {
    display: flex
}

.mx-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: mx-fade .3s ease
}

.mx-modal-box {
    position: relative;
    background: #fff;
    border-radius: 22px;
    max-width: 420px;
    width: 100%;
    padding: 40px 30px 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    animation: mx-pop .4s var(--mx-ease)
}

@keyframes mx-fade {
    from {
        opacity: 0
    }
}

@keyframes mx-pop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96)
    }
}

.mx-modal-ico {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.mx-modal-ico svg {
    width: 38px;
    height: 38px
}

.mx-modal.is-success .mx-modal-ico {
    background: rgba(25, 165, 88, .12);
    color: #14934c
}

.mx-modal.is-error .mx-modal-ico {
    background: rgba(220, 53, 69, .12);
    color: #dc3545
}

.mx-modal-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px
}

.mx-modal-box p {
    color: var(--mx-muted);
    margin-bottom: 22px;
    line-height: 1.65
}

.mx-footer {
    background: linear-gradient(165deg, #0f2e52 0%, var(--mx-navy) 45%, #0b2340 100%);
    color: rgba(255, 255, 255, .78);
    position: relative;
    overflow: hidden
}

.mx-footer::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 174, 239, .16), transparent 70%);
    pointer-events: none
}

.mx-footer-top {
    padding: clamp(44px, 6vw, 72px) 0 clamp(28px, 4vw, 44px)
}

.mx-footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px
}

.mx-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--mx-sky), transparent)
}

.mx-footer-brand img {
    max-width: 100%;
    width: 100%;
    height: auto !important;
    background: rgba(255, 255, 255, .95);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 18px
}

.mx-footer p,
.mx-footer li,
.mx-footer span,
.mx-footer address {
    color: rgba(255, 255, 255, .78)
}

.mx-footer-brand p {
    font-size: .9rem;
    line-height: 1.75
}

.mx-footer-links {
    list-style: none;
    margin: 0;
    padding: 0
}

.mx-footer-links li {
    margin-bottom: 11px
}

.mx-footer-links a {
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: color .25s, gap .25s
}

.mx-footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mx-sky);
    opacity: .6;
    transition: opacity .25s
}

.mx-footer-links a:hover {
    color: #fff;
    gap: 12px
}

.mx-footer-links a:hover::before {
    opacity: 1
}

.mx-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .92rem
}

.mx-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6
}

.mx-footer-contact svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--mx-sky)
}

.mx-footer-contact a {
    color: rgba(255, 255, 255, .82)
}

.mx-footer-contact a:hover {
    color: #fff
}

.mx-news-form {
    display: flex;
    gap: 0;
    margin-top: 6px
}

.mx-news-form input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 13px 16px;
    font-size: .9rem;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-right: 0;
    border-radius: 12px 0 0 12px
}

.mx-news-form input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.mx-news-form input:focus {
    outline: 0;
    border-color: var(--mx-sky);
    background: rgba(255, 255, 255, .14)
}

.mx-news-form button {
    flex: 0 0 auto;
    border: 0;
    padding: 0 18px;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(120deg, var(--mx-blue), var(--mx-sky));
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: filter .25s
}

.mx-news-form button:hover {
    filter: brightness(1.12)
}

.mx-news-form button svg {
    width: 18px;
    height: 18px
}

.mx-news-note {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 10px
}

.mx-social {
    display: flex;
    gap: 10px;
    margin-top: 22px
}

.mx-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    transition: background .3s, transform .3s var(--mx-ease), border-color .3s
}

.mx-social a svg {
    width: 18px;
    height: 18px
}

.mx-social a:hover {
    background: var(--mx-sky);
    border-color: var(--mx-sky);
    transform: translateY(-3px);
    color: #fff
}

.mx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    font-size: .85rem
}

.mx-footer-bottom p {
    margin: 0
}

.mx-reveal,
.mx-reveal-left,
.mx-reveal-right,
.mx-reveal-zoom {
    opacity: 0;
    transition: opacity .7s var(--mx-ease), transform .7s var(--mx-ease);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform
}

.mx-reveal {
    transform: translateY(34px)
}

.mx-reveal-left {
    transform: translateX(-40px)
}

.mx-reveal-right {
    transform: translateX(40px)
}

.mx-reveal-zoom {
    transform: scale(.92)
}

.mx-reveal.in,
.mx-reveal-left.in,
.mx-reveal-right.in,
.mx-reveal-zoom.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
    .mx-reveal,
    .mx-reveal-left,
    .mx-reveal-right,
    .mx-reveal-zoom {
        opacity: 1;
        transform: none;
        transition: none
    }
    .mx-hero-shape {
        animation: none
    }
    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important
    }
}

#gotoTop {
    border-radius: 50% !important;
    background: linear-gradient(120deg, var(--mx-blue), var(--mx-sky)) !important;
    box-shadow: 0 10px 24px rgba(0, 91, 171, .35)
}

@media (max-width:1399.98px) {
    .mx-nav-call span {
        display: none
    }
    .mx-nav-call {
        padding: 11px 13px;
        border-radius: 50%
    }
}

@media (max-width:1199.98px) {
    .mx-nav {
        display: none
    }
    .mx-burger {
        display: inline-flex
    }
}

@media (max-width:991.98px) {
     :root {
        --mx-header-h: 72px;
        --mx-header-h-scrolled: 60px
    }
    .mx-hero-grid {
        grid-template-columns: 1fr
    }
    .mx-hero-media {
        max-width: 640px;
        margin: 0 auto;
        width: 100%
    }
    .mx-hero {
        text-align: left
    }
}

@media (max-width:575.98px) {
    .mx-nav-quote {
        display: none
    }
    .mx-nav-call {
        display: inline-flex
    }
    .mx-burger-label {
        display: none
    }
    .mx-logo img {
        height: 51px
    }
    .mx-header.is-scrolled .mx-logo img {
        height: 51px
    }
    .mx-hero-actions .mx-btn {
        flex: 1 1 auto;
        justify-content: center
    }
    .mx-hero-card {
        left: 8px;
        bottom: 12px;
        padding: 10px 14px;
        font-size: .78rem
    }
    .mx-section-head h2 {
        font-size: 1.5rem
    }
    .mx-mm-panel {
        width: 100%
    }
}