:root {
    --ma-blue: #0044d7;
    --ma-blue-dark: #003ab8;
    --ma-ink: #0e102f;
    --ma-muted: #5f6475;
    --ma-soft: #f4f7fb;
    --ma-line: #e6eaf2;
    --ma-white: #fff;
    --ma-night: #000422;
    --ma-shell: 1280px;
    --ma-radius: 8px;
    --ma-shadow: 0 18px 50px rgba(14, 16, 47, .12);
    --ma-header-height: 92px;
    --ma-admin-bar-height: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: var(--ma-header-height);
    color: var(--ma-ink);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    background: var(--ma-white);
    overflow-x: hidden;
}

body.admin-bar {
    --ma-admin-bar-height: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        --ma-admin-bar-height: 46px;
    }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

button, input, textarea {
    font: inherit;
}

h1, h2, h3, h4, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.18;
    text-transform: capitalize;
}

h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: capitalize;
}

h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
}

p {
    color: var(--ma-muted);
}

@keyframes pmFadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.ma-shell {
    width: min(calc(100% - 40px), var(--ma-shell));
    margin: 0 auto;
}

.ma-section {
    padding: 95px 0;
}

.ma-center {
    text-align: center;
}

.ma-visually-hidden, .ma-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ma-skip-link:focus {
    position: fixed;
    z-index: 9999;
    width: auto;
    height: auto;
    clip: auto;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ma-blue);
}

.ma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid var(--ma-blue);
    border-radius: 999px;
    color: #fff;
    background: var(--ma-blue);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
}

.ma-btn:hover {
    color: #fff;
    border-color: var(--ma-night);
    background: var(--ma-night);
    transform: translateY(-2px);
}

.ma-btn--dark {
    border-color: var(--ma-night);
    background: var(--ma-night);
}

.ma-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .8);
    background: rgba(0, 0, 0, .12);
}

.ma-btn--quote {
    white-space: nowrap;
}

.ma-header {
    position: fixed;
    z-index: 1000;
    top: var(--ma-admin-bar-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(230, 234, 242, .7);
    transition: box-shadow .25s ease, background .25s ease;
}

.ma-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(14, 16, 47, .08);
}

.ma-header__inner {
    min-height: var(--ma-header-height);
    display: flex;
    align-items: center;
    gap: 28px;
}

.ma-logo {
    flex: 0 0 auto;
}

.ma-logo img {
    width: 245px;
}

.ma-nav {
    margin-left: auto;
}

.ma-nav__list,
.ma-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ma-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ma-nav__list > li {
    position: relative;
}

.ma-nav a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 34px 13px;
    color: var(--ma-ink);
    font-size: 18px;
    font-weight: 500;
}

.ma-nav a:hover,
.ma-nav a.is-active {
    color: var(--ma-blue);
}

.ma-language img {
    width: 18px;
    height: 14px;
    object-fit: cover;
}

.ma-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 245px;
    padding: 12px 0;
    background: #fff;
    box-shadow: var(--ma-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .2s ease;
}

.ma-submenu .ma-submenu {
    top: -12px;
    left: 100%;
}

.ma-has-menu:hover > .ma-submenu,
.ma-has-menu.is-open > .ma-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ma-submenu a {
    /*justify-content: space-between;*/
    padding: 10px 18px;
    font-size: 14px;
}

.ma-products-mega {
    display: none;
}

.ma-products-mega ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 922px) {
    .ma-products-mobile-submenu {
        display: none;
    }

    .ma-products-mega {
        position: fixed;
        z-index: 999;
        top: calc(var(--ma-header-height) + var(--ma-admin-bar-height));
        left: 0;
        right: 0;
        display: block;
        padding: 30px 0 28px;
        background: #fff;
        border-top: 1px solid var(--ma-line);
        box-shadow: 0 20px 44px rgba(14, 16, 47, .08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .ma-products-nav:hover > .ma-products-mega,
    .ma-products-nav:focus-within > .ma-products-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ma-products-mega__inner {
        width: min(calc(100% - 40px), var(--ma-shell));
        margin: 0 auto;
    }

    .ma-products-mega__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 62px;
    }

    .ma-products-mega__item {
        position: relative;
        min-width: 0;
    }

    .ma-nav .ma-products-mega__link {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        min-height: 86px;
        padding: 0;
        color: var(--ma-ink);
        font-size: 17px;
        font-weight: 400;
        line-height: 1.35;
    }

    .ma-nav .ma-products-mega__link:hover,
    .ma-products-mega__item--has-children:hover > .ma-products-mega__link {
        color: var(--ma-blue);
    }

    .ma-products-mega__link img {
        width: 86px;
        height: 86px;
        object-fit: cover;
        background: var(--ma-soft);
    }

    .ma-products-mega__link span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .ma-products-mega__link i {
        font-size: 12px;
    }

    .ma-products-mega__children {
        position: absolute;
        z-index: 2;
        top: 52px;
        left: 102px;
        min-width: 250px;
        padding: 4px 0;
        background: #fff;
        border: 1px solid #d9dde6;
        box-shadow: 0 18px 38px rgba(14, 16, 47, .12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

    .ma-products-mega__item--has-children:hover > .ma-products-mega__children,
    .ma-products-mega__item--has-children:focus-within > .ma-products-mega__children {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ma-nav .ma-products-mega__children a {
        display: block;
        padding: 6px 12px;
        color: #30333d;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.55;
        white-space: nowrap;
    }

    .ma-nav .ma-products-mega__children a:hover {
        color: var(--ma-blue);
        background: var(--ma-soft);
    }
}

.ma-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
}

.ma-menu-toggle span:not(.ma-visually-hidden) {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: var(--ma-ink);
    transition: .2s ease;
}

.ma-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.ma-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.ma-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.ma-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    padding: 150px 0 120px;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 4, 34, .82), rgba(0, 4, 34, .42), rgba(0, 4, 34, .12)), url("./assets/images/Home_Big_Banner-1.jpg") center / cover no-repeat;
}

.ma-hero__content {
    max-width: 820px;
    margin-left: max(20px, calc((100vw - var(--ma-shell)) / 2));
}

.ma-hero h1 {
    color: #fff;
    margin-bottom: 24px;
}

.ma-check-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    max-width: 720px;
}

.ma-check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 18px;
}

.ma-check-list li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 1px;
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.ma-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ma-section-head {
    margin-bottom: 42px;
}

.ma-section-head--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ma-section-head p {
    /*max-width: 780px;*/
    margin-inline: auto;
}

.ma-products {
    background: #fff;
}

.ma-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.ma-product-card {
    text-align: center;
}

.ma-product-card > a {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--ma-soft);
}

.ma-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.ma-product-card span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 68, 215, .68);
    opacity: 0;
    transition: opacity .25s ease;
}

.ma-product-card:hover img {
    transform: scale(1.07);
}

.ma-product-card:hover span {
    opacity: 1;
}

.ma-product-card h3 {
    margin: 18px 0 0;
    font-size: 22px;
}

.ma-product-card h3 a:hover {
    color: var(--ma-blue);
}

.ma-strengths {
    padding: 100px 0;
    background: var(--ma-soft);
}

.ma-strengths .ma-shell {
    width: min(calc(100% - 60px), 1260px);
}

.ma-strengths__panel {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.ma-strengths h2 {
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.ma-strength-list {
    display: grid;
    gap: 35px;
    margin: 0 0 44px;
}

.ma-strength {
    width: min(100%, 1110px);
    min-height: 347px;
    display: grid;
    grid-template-columns: 279px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
}

.ma-strength--reverse {
    grid-template-columns: minmax(0, 1fr) 279px;
    margin-left: auto;
}

.ma-strength--reverse img {
    order: 2;
}

.ma-strength img {
    width: 279px;
    height: 279px;
    object-fit: cover;
    border-radius: 0;
}

.ma-strength h3 {
    margin: 0 0 18px;
    color: var(--ma-blue);
    font-size: 27px;
    line-height: 28.8px;
}

.ma-strength p {
    margin-bottom: 0;
    color: #666;
    font-size: 16px;
    line-height: 28.8px;
}

.ma-strengths__panel > .ma-btn {
    display: flex;
    width: max-content;
    margin: 0 auto;
}

.ma-about {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.ma-about .ma-shell {
    position: relative;
    z-index: 1;
}

.ma-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.ma-copy p {
    margin-bottom: 18px;
}

.ma-copy .ma-btn {
    margin-top: 14px;
}

.ma-video-card {
    position: relative;
    z-index: 2;
    border-radius: var(--ma-radius);
    overflow: hidden;
    box-shadow: var(--ma-shadow);
}

.ma-video-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ma-video-card button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--ma-blue);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 68, 215, .32);
}

.ma-video-card button:hover {
    background: var(--ma-night);
}

.ma-about__shape {
    position: absolute;
    right: max(20px, calc((100vw - var(--ma-shell)) / 2));
    bottom: 150px;
    z-index: 0;
    width: min(579px, 46vw);
    opacity: 1;
    pointer-events: none;
    animation: 500ms pmFadeIn;
}

.ma-counters {
    padding: 10px 0 90px;
    background: #fff;
    color: #fff;
}

.ma-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 5px;
}

.ma-counter {
    min-height: 145px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 30px 22px;
    text-align: center;
    background: var(--ma-blue);
    border-radius: 5px;
}

.ma-counter:not(:first-child) {
    background: var(--ma-soft);
}

.ma-counter span, .ma-counter b {
    display: inline-block;
    color: var(--ma-blue);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.ma-counter:first-child span,
.ma-counter:first-child b {
    color: #fff;
}

.ma-counter p {
    flex: 0 0 100%;
    margin: 0 0 4px;
    color: #000;
    font-size: 18px;
    line-height: 45px;
    font-weight: 400;
}

.ma-counter:first-child p {
    color: #fff;
}

.ma-certificates {
    background: var(--ma-soft);
}

.ma-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
    margin-top: 34px;
}

.ma-logo-grid img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    padding: 18px;
    border: 1px solid var(--ma-line);
    background: #fff;
}

.ma-certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    margin-top: 36px;
}

.ma-certificate-grid figure {
    margin: 0;
    text-align: center;
}

.ma-certificate-grid img {
    width: 100%;
    aspect-ratio: 635 / 897;
    object-fit: contain;
    background: #fff;
}

.ma-certificate-grid figcaption {
    margin-top: 12px;
    color: var(--ma-muted);
    font-size: 16px;
    line-height: 1.4;
}

.ma-workshop {
    background: var(--ma-white);
}

.ma-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.ma-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #d9dee8;
}

.ma-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.ma-gallery__item span {
    position: absolute;
    inset: auto 0 0;
    padding: 22px 16px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(0, 4, 34, .74));
    transform: translateY(100%);
    transition: transform .25s ease;
}

.ma-gallery__item:hover img {
    transform: scale(1.06);
}

.ma-gallery__item:hover span {
    transform: translateY(0);
}

.ma-section-action {
    margin-top: 36px;
}

.ma-testimonials {
    padding: 100px 0;
    background: #f5f7fb;
}

.ma-testimonials .ma-section-head {
    margin-bottom: 50px;
}

.ma-testimonials .ma-section-eyebrow {
    margin: 0 0 20px;
    color: var(--ma-blue);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

.ma-testimonials .ma-section-head h2 {
    margin: 0;
    color: #333;
    font-size: 45px;
    line-height: 1.3;
    font-weight: 600;
}

.ma-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    width: calc(100% - 20px);
    margin: 0 auto;
}

.ma-testimonial-wrap {
    min-width: 0;
    padding: 10px;
    border: 0;
    box-shadow: none;
}

.ma-testimonial-wrap::before {
    content: "";
    display: block;
    width: 6%;
    min-width: 36px;
    height: 3.5px;
    margin-bottom: 20px;
    background: var(--ma-blue);
}

.ma-testimonial-swiper,
.ma-customer-swiper,
.ma-testimonial-swiper .swiper-wrapper,
.ma-customer-swiper .swiper-wrapper,
.ma-testimonial-swiper .swiper-slide,
.ma-customer-swiper .swiper-slide {
    min-width: 0;
    max-width: 100%;
}

.ma-testimonial-swiper {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 40px;
}

blockquote {
    margin: 0;
    padding: 20px 20px 0;
    color: #333;
    font-size: 19.8px;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}

blockquote cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    color: var(--ma-ink);
    font-style: normal;
    font-weight: 600;
}

blockquote cite img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

blockquote cite strong,
blockquote cite em {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

blockquote cite strong {
    color: var(--ma-ink);
    font-style: normal;
    font-weight: 700;
}

blockquote cite em {
    color: var(--ma-ink);
    font-style: normal;
    font-weight: 400;
}

.ma-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
}

.ma-testimonial-swiper .ma-swiper-controls {
    gap: 0;
    margin-top: 17px;
}

.ma-testimonial-swiper .ma-swiper-prev,
.ma-testimonial-swiper .ma-swiper-next {
    display: none;
}

.ma-swiper-controls button,
.ma-customer-swiper > button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--ma-blue);
    cursor: pointer;
}

.ma-customer-wrap {
    min-width: 0;
    padding: 10px;
    overflow: hidden;
}

.ma-customer-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ma-customer-swiper img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 5px;
}

.ma-customer-swiper > button {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 25px;
    height: 25px;
    padding: 0;
    color: rgba(237, 237, 237, .9);
    background: transparent;
    font-size: 25px;
    line-height: 1;
    transform: translateY(-50%);
}

.ma-customer-prev {
    left: 10px;
}

.ma-customer-next {
    right: 10px;
}

.ma-samples {
    background: var(--ma-white);
}

.ma-form {
    display: grid;
    gap: 16px;
    padding: 36px;
    background: #fff;
    box-shadow: var(--ma-shadow);
}

.ma-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ma-form label {
    display: grid;
    gap: 7px;
    color: var(--ma-ink);
    font-size: 14px;
    font-weight: 500;
}

.ma-form input,
.ma-form textarea {
    width: 100%;
    border: 1px solid #d9dfeb;
    border-radius: 0;
    padding: 13px 14px;
    color: var(--ma-ink);
    background: #fff;
    outline: none;
}

.ma-form input:focus,
.ma-form textarea:focus {
    border-color: var(--ma-blue);
}

.ma-form .is-invalid {
    border-color: #d22;
}

.ma-form__message {
    margin: 0;
    font-size: 14px;
}

.ma-footer {
    background: var(--ma-night);
    color: #fff;
}

.ma-footer p, .ma-footer a {
    color: rgba(255, 255, 255, .78);
}

.ma-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .9fr 1.15fr;
    gap: 48px;
    padding: 70px 0 52px;
}

.ma-footer__logo {
    width: 230px;
    margin-bottom: 18px;
    /*filter: brightness(0) invert(1);*/
}

.ma-footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 21px;
}

.ma-footer a {
    display: block;
    margin-bottom: 9px;
}

.ma-footer a:hover {
    color: #fff;
}

.ma-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.ma-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 4px;
    background: var(--ma-blue);
    color: #fff;
}

.ma-footer__bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
}

.ma-footer__bottom a {
    display: inline;
    color: #fff;
}

.ma-floating-contact {
    position: fixed;
    right: 0;
    top: 52%;
    z-index: 950;
    display: grid;
    justify-items: end;
    gap: 8px;
    width: 152px;
    transform: translateY(-50%);
}

.ma-floating-contact__link {
    position: relative;
    width: 56px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow: hidden;
    border-radius: 28px 0 0 28px;
    padding: 0 17px;
    color: #fff;
    background: var(--ma-blue);
    box-shadow: 0 10px 24px rgba(0, 68, 215, .26);
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
    transition: width .25s ease, background .2s ease, transform .25s ease;
}

.ma-floating-contact__link:hover,
.ma-floating-contact__link:focus-visible {
    color: #fff;
}

.ma-floating-contact__link:hover,
.ma-floating-contact__link:focus-visible {
    background: var(--ma-night);
}

.ma-floating-contact__link:hover,
.ma-floating-contact__link:focus-visible {
    width: 152px;
}

.ma-floating-contact__label {
    max-width: 0;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: max-width .25s ease, opacity .2s ease, transform .25s ease;
}

.ma-floating-contact__link:hover .ma-floating-contact__label,
.ma-floating-contact__link:focus-visible .ma-floating-contact__label {
    max-width: 104px;
    opacity: 1;
    transform: translateX(0);
}

.ma-scroll-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--ma-blue);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .2s ease;
}

.ma-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ma-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ma-modal.is-open {
    display: flex;
}

.ma-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 4, 34, .72);
}

.ma-modal__panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(90vh, 820px);
    overflow: auto;
    padding: 38px;
    background: #fff;
    box-shadow: var(--ma-shadow);
}

.ma-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--ma-soft);
    cursor: pointer;
}

.ma-modal--video .ma-modal__panel {
    width: min(980px, 100%);
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.ma-modal--video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.ma-modal--video .ma-modal__close {
    top: -50px;
    right: 0;
    color: #fff;
    background: transparent;
}

.ma-modal--image .ma-modal__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: min(92vw, 1180px);
    max-height: 88vh;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.ma-image-modal__image {
    display: block;
    max-width: min(92vw, 1180px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ma-modal--image .ma-modal__close {
    top: -50px;
    right: 0;
    color: #fff;
    background: transparent;
}

body.ma-modal-open {
    overflow: hidden;
}

.ma-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.ma-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ma-page-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 4, 34, .78), rgba(0, 4, 34, .34)), var(--ma-page-hero-image, url("./assets/images/Home_Big_Banner-1.jpg")) center / cover no-repeat;
}

.ma-page-hero h1 {
    max-width: 820px;
    margin-bottom: 12px;
    color: #fff;
}

.ma-page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
}

.ma-page-hero--center {
    text-align: center;
}

.ma-page-hero--center h1,
.ma-page-hero--center p {
    margin-left: auto;
    margin-right: auto;
}

.ma-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.ma-breadcrumb a:hover {
    color: #fff;
}

.ma-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: 58px;
    align-items: center;
}

.ma-media-frame {
    overflow: hidden;
    border-radius: var(--ma-radius);
    box-shadow: var(--ma-shadow);
    background: var(--ma-soft);
}

.ma-media-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ma-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.ma-icon-card,
.ma-contact-card,
.ma-download-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--ma-line);
    box-shadow: 0 12px 34px rgba(14, 16, 47, .06);
}

.ma-icon-card i,
.ma-contact-card i {
    color: var(--ma-blue);
    font-size: 30px;
    margin-bottom: 18px;
}

.ma-process-list {
    display: grid;
    gap: 18px;
    counter-reset: ma-process;
}

.ma-process-list li {
    list-style: none;
    position: relative;
    padding: 22px 24px 22px 72px;
    background: #fff;
    border: 1px solid var(--ma-line);
}

.ma-process-list li::before {
    counter-increment: ma-process;
    content: counter(ma-process, decimal-leading-zero);
    position: absolute;
    left: 22px;
    top: 24px;
    color: var(--ma-blue);
    font-weight: 700;
}

.ma-btn--square {
    border-radius: 0;
}

.ma-about-hero {
    min-height: 565px;
    display: grid;
    place-items: center;
    padding: 90px 30px;
    background: linear-gradient(rgba(0, 4, 34, .22), rgba(0, 4, 34, .22)), var(--ma-about-hero-image, url("./assets/images/About-NIUYUAN-Trims.jpg")) center / cover no-repeat;
}

.ma-about-hero__panel {
    width: min(1280px, 100%);
    padding: 44px 50px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, .45);
    border-radius: 5px;
}

.ma-about-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
}

.ma-about-hero p {
    max-width: 920px;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
}

.ma-about-intro.ma-counters {
    padding: 50px 0 92px;
    color: var(--ma-ink);
    background: #fff;
}

.ma-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 34px;
}

.ma-about-stat {
    min-height: 130px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 24px;
    text-align: center;
    background: #edf5ff;
    border-radius: 5px;
}

.ma-about-stat strong {
    display: block;
    color: var(--ma-blue);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.ma-about-stat p {
    margin: 6px 0 0;
    color: #6a6a6a;
    font-size: 17px;
    line-height: 1.45;
}

.ma-about-richtext {
    color: #6a6a6a;
}

.ma-about-richtext p,
.ma-about-richtext li {
    color: #6a6a6a;
    font-size: 18px;
    line-height: 1.85;
}

.ma-about-richtext ul {
    display: grid;
    gap: 16px;
    margin: 18px 0 24px;
    padding-left: 32px;
}

.ma-about-richtext a {
    color: var(--ma-blue);
}

.ma-about-factory,
.ma-about-choose,
.ma-about-certificates {
    background: #f5f7fb;
}

.ma-about-factory {
    padding: 110px 0;
}

.ma-about-team,
.ma-about-contact {
    background: #fff;
}

.ma-about-team {
    padding: 110px 0;
}

.ma-about-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.ma-about-copy h2 {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1.22;
}

.ma-about-copy h3 {
    margin: 28px 0 10px;
    font-size: 24px;
}

.ma-about-copy p {
    color: #6a6a6a;
    font-size: 18px;
    line-height: 1.85;
}

.ma-about-copy .ma-btn {
    margin-top: 20px;
}

.ma-about-factory .ma-video-card {
    box-shadow: none;
    border-radius: 0;
}

.ma-about-factory .ma-video-card img {
    aspect-ratio: 16 / 9;
}

.ma-about-factory .ma-video-card button {
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .12);
    border: 4px solid rgba(255, 255, 255, .88);
    box-shadow: none;
}

.ma-about-image {
    overflow: hidden;
}

.ma-about-image img {
    width: 100%;
    aspect-ratio: 800 / 633;
    object-fit: cover;
}

.ma-about-choose .ma-section-head {
    max-width: 1180px;
    margin: 0 auto 42px;
}

.ma-about-choose .ma-section-head h2,
.ma-about-history .ma-section-head h2,
.ma-about-certificates .ma-section-head h2 {
    font-size: 40px;
    color: var(--ma-night);
}

.ma-about-choose .ma-section-head p,
.ma-about-history .ma-section-head p,
.ma-about-certificates .ma-section-head p {
    max-width: 1120px;
    color: #6a6a6a;
}

.ma-about-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}

.ma-about-choice {
    min-height: 246px;
    padding: 40px;
    text-align: center;
    background: #fff;
    box-shadow: 0 18px 46px rgba(14, 16, 47, .06);
}

.ma-about-choice span {
    width: 62px;
    height: 62px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 26px;
    color: var(--ma-blue);
    background: #eef7ff;
    border-radius: 50%;
    font-size: 27px;
}

.ma-about-choice span img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.ma-about-choice h3 {
    margin-bottom: 14px;
    font-size: 24px;
}

.ma-about-choice p {
    margin: 0;
    color: #6a6a6a;
    font-size: 16px;
    line-height: 1.75;
}

.ma-about-history {
    padding: 80px 0;
    background: #fff;
}

.ma-about-timeline {
    position: relative;
    max-width: 1040px;
    margin: 58px auto 0;
}

.ma-about-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 2px;
    background: #dfe7f3;
    transform: translateX(-50%);
}

.ma-about-timeline article {
    position: relative;
    width: calc(50% - 42px);
    margin-bottom: 42px;
    padding: 26px 28px;
    background: #fff;
    border: 1px solid var(--ma-line);
    box-shadow: 0 14px 38px rgba(14, 16, 47, .05);
}

.ma-about-timeline article:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.ma-about-timeline article:nth-child(even) {
    margin-left: auto;
}

.ma-about-timeline article::before {
    content: "";
    position: absolute;
    top: 34px;
    width: 16px;
    height: 16px;
    background: var(--ma-blue);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--ma-blue);
}

.ma-about-timeline article:nth-child(odd)::before {
    right: -51px;
}

.ma-about-timeline article:nth-child(even)::before {
    left: -51px;
}

.ma-about-timeline time {
    display: block;
    margin-bottom: 12px;
    color: var(--ma-blue);
    font-size: 14px;
    font-weight: 600;
}

.ma-about-timeline h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.ma-about-timeline p {
    margin-bottom: 0;
    color: #6a6a6a;
    font-size: 16px;
    line-height: 1.75;
}

.ma-about-certificates {
    padding: 120px 0;
}

.ma-about-cert-swiper {
    padding: 8px 4px 54px;
}

.ma-about-cert-swiper figure {
    margin: 0;
    text-align: center;
}

.ma-about-cert-swiper img {
    width: 100%;
    aspect-ratio: 635 / 897;
    object-fit: contain;
    background: #fff;
}

.ma-about-cert-swiper figcaption {
    margin-top: 16px;
    color: #6a6a6a;
    font-size: 16px;
}

.ma-about-cert-swiper .swiper-pagination-bullet-active {
    background: var(--ma-blue);
}

.ma-about-contact {
    padding: 90px 0 100px;
}

.ma-about-form {
    padding: 34px;
    background: var(--ma-soft);
    box-shadow: none;
}

.ma-about-form .ma-btn {
    border-radius: 0;
}

.ma-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ma-category-card {
    overflow: hidden;
    border: 1px solid var(--ma-line);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ma-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ma-shadow);
}

.ma-category-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ma-category-card__body {
    padding: 22px;
}

.ma-category-card__body p {
    margin-bottom: 0;
}

.ma-layout-with-sidebar {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.ma-sidebar {
    position: sticky;
    top: 116px;
    padding: 24px;
    background: var(--ma-soft);
    border: 1px solid var(--ma-line);
}

.ma-sidebar a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #dde4f0;
    color: var(--ma-muted);
}

.ma-sidebar a:hover,
.ma-sidebar a.is-active {
    color: var(--ma-blue);
}

.ma-product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ma-product-list-card {
    overflow: hidden;
    border: 1px solid var(--ma-line);
    background: #fff;
}

.ma-product-list-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--ma-soft);
    transition: transform .35s ease;
}

.ma-product-list-card:hover img {
    transform: scale(1.05);
}

.ma-product-list-card__body {
    padding: 18px;
}

.ma-product-list-card h3 {
    font-size: 21px;
}

.ma-product-list-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 4, 34, .78) 0%, rgba(0, 4, 34, .5) 44%, rgba(0, 4, 34, .08) 100%), url("./assets/images/Stainless_Steel_Tile_Trim_Banner.jpg") center / cover no-repeat;
}

.ma-product-list-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 76%) minmax(0, 1fr);
    align-items: center;
}

.ma-product-list-hero__copy {
    color: #fff;
}

.ma-product-list-hero .ma-breadcrumb,
.ma-product-list-hero p {
    color: rgba(255, 255, 255, .86);
}

.ma-product-list-hero h1 {
    margin-bottom: 24px;
    color: #fff;
    font-size: 50px;
    line-height: 1.25;
}

.ma-product-list-hero p {
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 1.78;
}

.ma-section-head {
    /*max-width: 920px;*/
    margin: 0 auto 44px;
    text-align: center;
}

.ma-section-head h2 {
    margin-bottom: 16px;
}

.ma-section-head p {
    margin-bottom: 0;
}

.ma-product-family {
    background: #fff;
}

.ma-product-family-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.ma-product-family-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background: #F5F7FB;
    border: 1px solid var(--ma-line);
    transition: transform .25s ease, box-shadow .25s ease;
}

.ma-product-family-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ma-shadow);
}

.ma-product-family-card img {
    width: 100%;
    aspect-ratio: 450 / 400;
    object-fit: cover;
    background: var(--ma-soft);
}

.ma-product-family-card > div {
    display: grid;
    align-content: start;
    text-align: center;
    gap: 14px;
    padding: 24px;
}

.ma-product-family-card h3 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.3;
}

.ma-product-family-card p {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.65;
}

.ma-product-family-card .ma-btn {
    width: max-content;
    justify-self: center;
    padding: 12px 22px;
    font-size: 15px;
}

.ma-product-advantages,
.ma-product-split--soft,
.ma-product-benefits,
.ma-product-params--soft,
.ma-product-applications {
    background: var(--ma-soft);
}

.ma-product-advantages {
    padding: 6% 1%;
}

.ma-product-advantages .ma-section-head {
    margin-bottom: 20px;
    text-align: center;
}

.ma-product-advantages .ma-section-head h2 {
    margin-bottom: 0;
    color: var(--ma-ink);
}

.ma-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 20px;
}

.ma-advantage-item {
    padding: 20px;
    text-align: center;
}

.ma-advantage-item i {
    display: block;
    margin-bottom: 15px;
    color: var(--ma-blue);
    font-size: 30px;
    line-height: 1;
}

.ma-advantage-item h3 {
    margin-bottom: 17px;
    color: var(--ma-ink);
    font-size: 1.3em;
    line-height: 1.3;
}

.ma-advantage-item p {
    margin-bottom: 0;
    color: var(--ma-muted);
    font-size: 1em;
    line-height: 1.65;
}

.ma-product-split .ma-two-col {
    gap: 70px;
}

.ma-product-media-frame {
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.ma-product-media-frame img {
    width: 100%;
    aspect-ratio: 13 / 8;
    object-fit: cover;
}

.ma-product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.ma-product-table th,
.ma-product-table td {
    border: 1px solid var(--ma-line);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.ma-product-table th {
    width: 230px;
    color: var(--ma-ink);
    background: #f8f9fc;
    font-weight: 600;
}

.ma-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ma-package-grid figure {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ma-line);
}

.ma-package-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ma-package-grid figcaption {
    padding: 11px 14px;
    color: var(--ma-ink);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.ma-product-benefits__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.ma-product-benefits .ma-section-head {
    text-align: center;
}

.ma-manufacturing {
    padding: 80px 0;
    background: #fff;
}

.ma-manufacturing .ma-section-head {
    text-align: center;
}

.ma-manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ma-manufacturing-card {
    padding: 20px;
    text-align: left;
}

.ma-manufacturing-card img {
    width: 100%;
    aspect-ratio: 500 / 316;
    object-fit: cover;
    margin-bottom: 15px;
}

.ma-manufacturing-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.ma-manufacturing-card p {
    margin-bottom: 0;
    color: var(--ma-muted);
    font-size: 16px;
    line-height: 1.65;
}

.ma-check-list {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ma-check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--ma-muted);
    font-size: 17px;
    line-height: 1.65;
}

.ma-check-list li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ma-blue);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.ma-check-list strong {
    color: var(--ma-ink);
}

.ma-application-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ma-application-card {
    position: relative;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 4, 34, .04), rgba(0, 4, 34, .78)), var(--ma-app-image) center / cover no-repeat;
}

.ma-application-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 68, 215, .1);
    opacity: 0;
    transition: opacity .25s ease;
}

.ma-application-card:hover::after {
    opacity: 1;
}

.ma-application-card h3,
.ma-application-card p {
    position: relative;
    z-index: 1;
    color: #fff;
}

.ma-application-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.ma-application-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.62;
}

.ma-product-moq {
    padding: 92px 0;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 4, 34, .82), rgba(0, 68, 215, .6)), url("./assets/images/Stainless-Steel-Tile-Trim-2.jpg") center / cover no-repeat;
}

.ma-product-moq .ma-shell {
    /*max-width: 780px;*/
}

.ma-product-moq h2 {
    color: #fff;
}

.ma-product-moq p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
}

.ma-related-products {
    background: #fff;
}

.ma-related-carousel {
    position: relative;
}

.ma-related-product-swiper {
    position: relative;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 0 0 8px;
}

.ma-related-product-card {
    height: auto;
    background: #fff;
    border: 1px solid var(--ma-line);
}

.ma-related-product-card a {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
    text-align: center;
}

.ma-related-product-card img {
    width: 100%;
    aspect-ratio: 600 / 425;
    object-fit: cover;
}

.ma-related-product-card h3 {
    margin: 0;
    padding: 18px 16px 12px;
    font-size: 18px;
}

.ma-related-product-card span {
    width: max-content;
    margin: 0 auto 24px;
    border-radius: 999px;
    padding: 12px 22px;
    color: #fff;
    background: var(--ma-blue);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.ma-related-product-card a:hover span {
    background: var(--ma-night);
}

.ma-related-carousel .ma-swiper-button {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    color: #fff;
    background: var(--ma-blue);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.ma-related-carousel .ma-swiper-button:hover,
.ma-related-carousel .ma-swiper-button:focus-visible {
    background: var(--ma-night);
    transform: translateY(-50%) scale(1.04);
}

.ma-related-carousel .ma-swiper-button i {
    font-size: 18px;
    line-height: 1;
}

.ma-related-carousel .ma-swiper-button.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}

.ma-related-prev {
    left: 0;
}

.ma-related-next {
    right: 0;
}

.ma-product-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: start;
}

.ma-product-sample-form {
    box-shadow: none;
}

.ma-product-sample-form h3 {
    margin-bottom: 0;
}

.ma-product-sample-form p {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.62;
}

.ma-product-contact__info h2 {
    margin-bottom: 18px;
}

.ma-product-contact__info > p {
    margin-bottom: 30px;
}

.ma-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
    gap: 54px;
    align-items: start;
}

.ma-product-media__main {
    overflow: hidden;
    border: 1px solid var(--ma-line);
    background: var(--ma-soft);
}

.ma-product-media__main img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ma-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.ma-product-thumbs button {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.ma-product-thumbs button.is-active {
    border-color: var(--ma-blue);
}

.ma-product-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ma-spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.ma-spec-list div {
    padding: 14px 16px;
    background: var(--ma-soft);
}

.ma-spec-list span {
    display: block;
    color: var(--ma-muted);
    font-size: 13px;
}

.ma-tabs {
    border: 1px solid var(--ma-line);
    background: #fff;
}

.ma-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--ma-line);
}

.ma-tab-buttons button {
    border: 0;
    border-radius: 0;
    padding: 16px 24px;
    color: var(--ma-ink);
    background: transparent;
    cursor: pointer;
}

.ma-tab-buttons button.is-active {
    color: #fff;
    background: var(--ma-blue);
}

.ma-tab-panel {
    display: none;
    padding: 30px;
}

.ma-tab-panel.is-active {
    display: block;
}

.ma-detail-hero {
    padding: 120px 30px 96px;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 4, 34, .86), rgba(0, 68, 215, .52)), url("./assets/images/Stainless-Steel-L-Shape-Trim-e1702708124821.jpg") center / cover no-repeat;
}

.ma-detail-hero .ma-shell {
    /*max-width: 1180px;*/
}

.ma-detail-hero h1 {
    max-width: 80%;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 500;
}

.ma-detail-hero p {
    max-width: 80%;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.75;
}

.ma-detail-overview {
    background: #fff;
}

.ma-detail-overview .ma-product-detail {
    max-width: 1140px;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.ma-detail-gallery {
    position: relative;
    overflow: hidden;
    background: var(--ma-soft);
}

.ma-detail-gallery img,
.ma-case-swiper img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.ma-detail-gallery img {
    aspect-ratio: 1 / 1;
}

.ma-detail-overview .ma-copy h2 {
    margin-bottom: 26px;
    font-size: 36px;
    line-height: 1.24;
}

.ma-detail-gallery .ma-swiper-button,
.ma-case-swiper .ma-swiper-button {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ma-blue);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}

.ma-detail-gallery .ma-swiper-button:hover,
.ma-case-swiper .ma-swiper-button:hover {
    background: var(--ma-night);
    transform: translateY(-50%) scale(1.04);
}

.ma-detail-gallery-prev,
.ma-case-prev {
    left: 18px;
}

.ma-detail-gallery-next,
.ma-case-next {
    right: 18px;
}

.ma-detail-gallery .swiper-pagination,
.ma-case-swiper .swiper-pagination {
    position: static;
    padding: 14px 0 4px;
}

.ma-detail-bullets {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.ma-detail-bullets li {
    position: relative;
    padding-left: 28px;
    color: var(--ma-muted);
    font-size: 17px;
    line-height: 1.6;
}

.ma-detail-bullets li::before {
    content: "\f192";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--ma-blue);
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.ma-color-options,
.ma-production-process,
.ma-product-params,
.ma-product-packaging {
    background: #fff;
}

.ma-product-cases,
.ma-related-products {
    background: var(--ma-soft);
}

.ma-color-options .ma-section-head,
.ma-product-cases .ma-section-head,
.ma-product-packaging .ma-section-head {
    text-align: center;
}

.ma-color-group {
    margin-top: 30px;
}

.ma-color-group h3 {
    margin-bottom: 18px;
    font-size: 26px;
}

.ma-color-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ma-color-grid figure {
    margin: 0;
    background: #fff;
    border: 1px solid var(--ma-line);
    text-align: center;
}

.ma-color-grid img {
    width: 100%;
    aspect-ratio: 220 / 80;
    object-fit: cover;
}

.ma-color-grid figcaption {
    padding: 11px 12px;
    color: var(--ma-ink);
    font-size: 14px;
    font-weight: 500;
}

.ma-case-carousel {
    position: relative;
}

.ma-case-swiper {
    position: relative;
    overflow: hidden;
}

.ma-case-swiper img {
    aspect-ratio: 800 / 533;
}

.ma-detail-moq {
    background-image: linear-gradient(90deg, rgba(0, 4, 34, .86), rgba(0, 68, 215, .52)), url("./assets/images/Stainless-Steel-L-Shape-Trim-e1702708124821.jpg");
}

.ma-package-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.ma-product-packaging h2 {
    margin-bottom: 18px;
}

.ma-product-packaging p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.ma-packaging-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
    margin-bottom: 30px;
}

.ma-packaging-list span {
    position: relative;
    padding-left: 18px;
    color: var(--ma-muted);
    font-size: 16px;
}

.ma-packaging-list span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ma-blue);
}

.ma-package-image {
    margin: 0;
    overflow: hidden;
    background: var(--ma-soft);
}

.ma-package-image img {
    width: 100%;
    display: block;
    aspect-ratio: 580 / 400;
    object-fit: cover;
}

.ma-contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.ma-contact-list {
    display: grid;
    gap: 18px;
}

.ma-contact-hero {
    padding: 130px 30px;
    color: #fff;
    background: #000422 url("./assets/images/niuyuantrims-contact-us-header-bg2.jpg") center / cover no-repeat;
}

.ma-contact-hero__inner {
    text-align: center;
}

.ma-contact-hero h1 {
    margin-bottom: 18px;
    color: #fff;
}

.ma-contact-hero p {
    max-width: 980px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
}

.ma-contact-main {
    padding: 104px 30px 0;
    background: #fff;
}

.ma-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.ma-contact-info {
    position: relative;
    z-index: 1;
    padding-right: 56px;
}

.ma-contact-info h2 {
    margin-bottom: 18px;
}

.ma-contact-note {
    margin: 0 0 26px;
    padding-right: 40px;
    color: var(--ma-ink);
    font-weight: 600;
    line-height: 1.75;
}

.ma-contact-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.ma-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    /*background: #f8f8fb;*/
}

.ma-contact-item span {
    flex: 0 0 auto;
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    color: var(--ma-blue);
    background: rgba(68, 112, 230, .1);
    border-radius: 50%;
    font-size: 25px;
}

.ma-contact-item h4 {
    margin: 0 0 8px;
    font-size: 20px;
}

.ma-contact-item p {
    margin: 0;
    color: #5f6475;
    font-size: 16px;
    line-height: 1.65;
}

.ma-contact-item--service {
    background: var(--ma-blue);
    border-bottom: 0;
}

.ma-contact-item--service span {
    color: var(--ma-blue);
    background: #fff;
}

.ma-contact-item--service h4,
.ma-contact-item--service p {
    color: #fff;
}

.ma-contact-form {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding: 61px 64px 64px;
    box-shadow: 0 80px 120px -40px rgba(0, 0, 0, .24);
}

.ma-contact-form .ma-btn {
    width: 100%;
    min-height: 54px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
}

.ma-contact-map {
    min-height: 400px;
    background: #eef2f7;
}

.ma-contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.ma-map-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ma-muted);
    background: linear-gradient(135deg, #edf3ff, #fff);
    border: 1px solid var(--ma-line);
}

.ma-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ma-blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ma-line);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.ma-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ma-shadow);
}

.ma-blog-card__media {
    display: block;
    overflow: hidden;
}

.ma-blog-card img {
    width: 100%;
    aspect-ratio: 650 / 425;
    object-fit: cover;
    transition: transform .35s ease;
}

.ma-blog-card:hover img {
    transform: scale(1.04);
}

.ma-blog-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    border-radius: 2px;
    background: var(--ma-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 86, 220, .2);
}

.ma-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 18px;
}

.ma-blog-card__body h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.35;
}

.ma-blog-card__body h3 a {
    color: inherit;
}

.ma-blog-card__body p {
    margin-bottom: 22px;
    color: var(--ma-muted);
    font-size: 16px;
    line-height: 1.75;
}

.ma-blog-read-more {
    align-self: flex-start;
    margin-top: auto;
    color: var(--ma-blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.ma-blog-date {
    padding: 16px 24px;
    color: var(--ma-muted);
    font-size: 12px;
    line-height: 1;
    border-top: 1px solid var(--ma-line);
}

.navigation.pagination {
    margin-top: 44px;
}

.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navigation.pagination .page-numbers {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border: 1px solid var(--ma-line);
    border-radius: 2px;
    color: var(--ma-ink);
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(14, 16, 47, .04);
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus {
    color: #fff;
    border-color: var(--ma-blue);
    background: var(--ma-blue);
    transform: translateY(-2px);
}

.navigation.pagination .page-numbers.current {
    color: #fff;
    border-color: var(--ma-blue);
    background: var(--ma-blue);
    box-shadow: 0 14px 30px rgba(0, 68, 215, .18);
}

.navigation.pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.navigation.pagination .prev,
.navigation.pagination .next {
    min-width: 96px;
}

.ma-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--ma-muted);
    font-size: 14px;
}

.ma-article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 820px) 330px;
    gap: 54px;
    align-items: start;
}

.ma-article {
    font-size: 18px;
}

.ma-article img {
    width: 100%;
    margin: 24px 0;
    border-radius: var(--ma-radius);
}

.ma-article h2 {
    margin-top: 38px;
}

.ma-author-card {
    padding: 24px;
    background: var(--ma-soft);
    border: 1px solid var(--ma-line);
}

.ma-author-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
}

.ma-download-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    background: var(--ma-night);
}

.ma-download-card h3,
.ma-download-card p {
    color: #fff;
}

.ma-download-card img {
    width: 140px;
}

.ma-single-strip {
    height: 5px;
    background: var(--ma-blue);
}

.ma-single-page {
    padding: 80px 0 50px;
    background: #f8f8fb;
}

.ma-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 71.326fr) minmax(280px, 28.398fr);
    gap: 0;
    align-items: start;
}

.ma-single-article {
    margin-right: 40px;
    padding: 60px 80px 70px;
    background: #fff;
}

.ma-single-header h1 {
    margin-bottom: 18px;
    color: var(--ma-blue);
    font-size: 45px;
    line-height: 1.16;
}

.ma-single-meta {
    margin-bottom: 28px;
    color: var(--ma-muted);
    font-size: 15px;
}

.ma-single-meta span {
    margin-right: 4px;
}

.ma-single-featured {
    width: 100%;
    margin-bottom: 30px;
}

.ma-single-body {
    font-family: "Poppins", Arial, sans-serif;
}

.ma-single-body p,
.ma-single-body li,
.ma-single-body td,
.ma-single-body th {
    color: #333;
    font-size: 18px;
    line-height: 1.72;
}

.ma-single-body p {
    margin-bottom: 15px;
}

.ma-single-body strong {
    color: #000;
    font-size: 19px;
}

.ma-single-body a {
    color: var(--ma-blue);
}

.ma-single-body h2 {
    margin: 36px 0 15px;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 700;
}

.ma-single-body h3 {
    margin: 24px 0 10px;
    font-size: 22px;
    line-height: 1.32;
    font-weight: 700;
}

.ma-toc {
    width: max-content;
    max-width: 100%;
    margin: 34px 0;
    padding: 16px 18px;
    background: #f8f8fb;
    border: 1px solid #dbddee;
}

.ma-toc__title {
    margin-bottom: 10px;
    color: #000;
    font-weight: 700;
}

.ma-toc ol {
    margin: 0;
    padding-left: 22px;
}

.ma-toc li {
    margin-bottom: 6px;
}

.ma-article-figure {
    margin: 24px 0 30px;
}

.ma-article-figure img {
    width: min(100%, 600px);
    margin: 0;
    border-radius: 0;
}

.ma-article-table {
    overflow-x: auto;
    margin: 24px 0 30px;
}

.ma-article-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.ma-article-table th,
.ma-article-table td {
    padding: 12px 14px;
    border: 1px solid #d8deeb;
    text-align: left;
    vertical-align: top;
}

.ma-article-table th {
    background: #f8f8fb;
    font-weight: 700;
}

.ma-single-share {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 34px;
    padding: 18px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.ma-single-share h4 {
    margin: 0;
    font-size: 20px;
}

.ma-single-share div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.ma-single-share a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ma-blue);
    border-radius: 50%;
    font-size: 14px;
}

.ma-single-author {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid #000;
}

.ma-single-author img {
    width: 88px;
    height: 88px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
}

.ma-single-author h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.ma-single-author p {
    margin: 0;
    color: var(--ma-muted);
    font-size: 16px;
    line-height: 1.65;
}

.ma-post-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: stretch;
    padding: 24px 0;
    border-bottom: 1px solid #000;
}

.ma-post-nav a {
    display: grid;
    gap: 8px;
}

.ma-post-nav a:last-child {
    text-align: right;
}

.ma-post-nav span {
    color: #555;
    font-size: 14px;
}

.ma-post-nav strong {
    color: var(--ma-blue);
    font-size: 14px;
    line-height: 1.5;
}

.ma-post-nav__sep {
    width: 1px;
    background: #ddd;
}

.ma-related-posts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 34px;
}

.ma-related-posts article {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(14, 16, 47, .12);
}

.ma-related-posts img {
    width: 100%;
    aspect-ratio: 650 / 351;
    margin: 0;
    object-fit: cover;
    border-radius: 0;
}

.ma-related-posts h3 {
    margin: 18px 18px 10px;
    color: var(--ma-night);
    font-size: 18px;
    line-height: 1.35;
}

.ma-related-posts span {
    display: inline-flex;
    margin: 0 18px 22px;
    color: var(--ma-blue);
    font-size: 14px;
    font-weight: 600;
}

.ma-single-sidebar {
    padding-left: 20px;
    position: relative;
}

.ma-single-article.ma-reveal,
.ma-single-article.ma-reveal.is-visible,
.ma-single-sidebar.ma-reveal,
.ma-single-sidebar.ma-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.ma-sidebar-card,
.ma-sidebar-form {
    margin-bottom: 20px;
    padding: 25px;
    background: #fff;
}

.ma-sidebar-catalog {
    text-align: center;
}

.ma-sidebar-catalog img {
    width: 39%;
    min-width: 105px;
    margin: 0 auto 20px;
}

.ma-sidebar-catalog h4 {
    margin-bottom: 14px;
    font-size: 18px;
}

.ma-sidebar-catalog p {
    margin-bottom: 20px;
    color: var(--ma-muted);
    font-size: 16px;
    line-height: 1.65;
}

.ma-sidebar-catalog .ma-btn,
.ma-sidebar-products__all,
.ma-sidebar-form .ma-btn {
    width: 100%;
    border-radius: 1px;
}

.ma-sidebar-products {
    text-align: center;
}

.ma-sidebar-products h3 {
    margin: 0 0 18px;
    padding: 14px 10px;
    background: #f8f8fb;
    font-size: 20px;
    font-weight: 500;
}

.ma-sidebar-products a:not(.ma-btn) {
    display: block;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #d8deeb;
}

.ma-sidebar-products img {
    width: 100%;
    aspect-ratio: 600 / 425;
    margin: 0 0 12px;
    object-fit: cover;
}

.ma-sidebar-products span {
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.ma-sidebar-form-wrap {
    position: relative;
}

.ma-sidebar-form {
    position: relative;
    border-top: 5px solid var(--ma-blue);
    box-shadow: none;
}

.ma-sidebar-form.is-sticky-fixed,
.ma-sidebar-form.is-sticky-bottom {
    margin: 0;
    z-index: 20;
}

.ma-sidebar-form.is-sticky-fixed {
    position: fixed;
}

.ma-sidebar-form.is-sticky-bottom {
    position: absolute;
    left: 0;
}

.ma-sidebar-form h4 {
    margin-bottom: 16px;
    font-size: 20px;
}

.ma-sidebar-form input,
.ma-sidebar-form textarea {
    padding: 11px 12px;
}

@media (max-width: 1100px) {
    :root {
        --ma-header-height: 82px;
    }

    .ma-logo img {
        width: 220px;
    }

    .ma-nav a {
        padding-inline: 9px;
        font-size: 14px;
    }

    .ma-product-grid, .ma-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ma-strength-list {
        grid-template-columns: 1fr;
    }

    .ma-strength {
        width: 100%;
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 32px;
    }

    .ma-strength--reverse {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .ma-strength img {
        width: 260px;
        height: 260px;
    }

    .ma-product-list-grid, .ma-blog-grid, .ma-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-product-family-grid,
    .ma-application-grid,
    .ma-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-product-contact__grid {
        gap: 42px;
    }

    .ma-about-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .ma-contact-hero {
        padding: 60px 30px;
    }

    .ma-contact-layout {
        grid-template-columns: 1fr;
    }

    .ma-contact-info {
        padding: 0 0 80px;
    }

    .ma-contact-form {
        margin-bottom: 40px;
    }

    .ma-single-page {
        padding: 0 0 80px;
    }

    .ma-single-layout {
        grid-template-columns: 1fr;
        width: min(100%, var(--ma-shell));
    }

    .ma-single-article {
        margin-right: 0;
    }

    .ma-single-sidebar {
        padding-left: 0;
    }

    .ma-sidebar-card,
    .ma-sidebar-form {
        margin: 20px 80px 0;
    }

    .ma-sidebar-form {
        position: static;
    }

    .ma-sidebar-form-wrap {
        height: auto !important;
    }
}

@media (max-width: 921px) {
    body {
        font-size: 16px;
    }

    .ma-shell {
        width: min(calc(100% - 32px), var(--ma-shell));
    }

    .ma-section {
        padding: 72px 0;
    }

    .ma-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .ma-header__inner {
        gap: 16px;
    }

    .ma-nav {
        position: fixed;
        inset: calc(var(--ma-header-height) + var(--ma-admin-bar-height)) 0 auto;
        display: none;
        max-height: calc(100vh - var(--ma-header-height) - var(--ma-admin-bar-height));
        overflow: auto;
        background: #fff;
        border-top: 1px solid var(--ma-line);
        box-shadow: var(--ma-shadow);
    }

    .ma-nav.is-open {
        display: block;
    }

    .ma-nav__list {
        display: block;
        width: min(calc(100% - 32px), var(--ma-shell));
        margin: 0 auto;
        padding: 16px 0 28px;
    }

    .ma-nav a,
    .ma-submenu a {
        width: max-content;
        max-width: 100%;
        justify-content: flex-start;
        padding: 12px 0;
        text-align: left;
    }

    .ma-submenu,
    .ma-submenu .ma-submenu {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 0 0 18px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .ma-has-menu.is-open > .ma-submenu {
        display: block;
    }

    .ma-nav .ma-has-menu:hover > .ma-submenu {
        display: none;
    }

    .ma-nav .ma-has-menu.is-open:hover > .ma-submenu {
        display: block;
    }

    .ma-btn--quote {
        display: none;
    }

    .ma-hero {
        min-height: 620px;
        padding: 110px 0 90px;
    }

    .ma-hero__content {
        margin: 0 auto;
    }

    .ma-section-head--split {
        display: block;
    }

    .ma-section-head--split .ma-btn {
        margin-top: 10px;
    }

    .ma-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-two-col, .ma-product-benefits__grid, .ma-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ma-manufacturing {
        padding: 60px 30px;
    }

    .ma-manufacturing-grid {
        grid-template-columns: 1fr;
    }

    .ma-testimonials {
        padding: 60px 0;
    }

    .ma-testimonials__grid {
        width: 100%;
    }

    .ma-counter-grid, .ma-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-certificate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-strength,
    .ma-strength--reverse {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }

    .ma-strength--reverse img {
        order: 0;
    }

    .ma-strength img {
        width: min(279px, 100%);
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .ma-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ma-intro-grid,
    .ma-about-split,
    .ma-layout-with-sidebar,
    .ma-product-detail,
    .ma-package-layout,
    .ma-product-list-hero__grid,
    .ma-product-contact__grid,
    .ma-contact-grid,
    .ma-article-wrap {
        grid-template-columns: 1fr;
    }

    .ma-sidebar {
        position: static;
    }

    .ma-about-hero {
        min-height: 430px;
        padding: 70px 20px;
    }

    .ma-product-list-hero {
        min-height: 520px;
        background-position: right center;
    }

    .ma-product-list-hero h1 {
        font-size: 42px;
    }

    .ma-color-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-about-hero__panel {
        padding: 34px 24px;
    }

    .ma-about-hero h1 {
        font-size: 38px;
    }

    .ma-about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ma-about-factory,
    .ma-about-team,
    .ma-about-contact,
    .ma-about-certificates {
        padding: 70px 0;
    }

    .ma-about-team .ma-about-image {
        order: 0;
    }

    .ma-about-timeline::before {
        left: 10px;
    }

    .ma-about-timeline article,
    .ma-about-timeline article:nth-child(odd),
    .ma-about-timeline article:nth-child(even) {
        width: calc(100% - 42px);
        margin-left: 42px;
        margin-right: 0;
        text-align: left;
    }

    .ma-about-timeline article:nth-child(odd)::before,
    .ma-about-timeline article:nth-child(even)::before {
        left: -40px;
        right: auto;
    }

    .ma-contact-main {
        padding: 60px 30px 0;
    }

    .ma-contact-note {
        padding-right: 0;
    }

    .ma-single-article {
        padding: 52px 44px 62px;
    }

    .ma-single-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 544px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .ma-logo img {
        width: 185px;
    }

    .ma-hero {
        min-height: 560px;
        padding: 92px 0 70px;
    }

    .ma-check-list li {
        font-size: 15px;
    }

    .ma-hero__actions, .ma-section-head--split {
        text-align: center;
    }

    .ma-hero__actions .ma-btn, .ma-section-head--split .ma-btn {
        width: 100%;
    }

    .ma-product-grid, .ma-gallery, .ma-counter-grid, .ma-logo-grid, .ma-certificate-grid, .ma-footer__grid {
        grid-template-columns: 1fr;
    }

    .ma-product-family-grid,
    .ma-application-grid,
    .ma-package-grid,
    .ma-color-grid,
    .ma-packaging-list {
        grid-template-columns: 1fr;
    }

    .ma-detail-hero {
        padding: 72px 16px 60px;
    }

    .ma-detail-hero h1 {
        font-size: 34px;
    }

    .ma-detail-hero p {
        font-size: 16px;
    }

    .ma-product-advantages {
        padding: 8% 1%;
    }

    .ma-manufacturing {
        padding: 40px 10px;
    }

    .ma-manufacturing-card h3 {
        margin-bottom: 2px;
        font-size: 19px;
    }

    .ma-product-advantages .ma-section-head {
        margin-bottom: 20px;
        text-align: center;
    }

    .ma-product-advantages .ma-section-head h2 {
        font-size: 1.5em;
    }

    .ma-advantages-grid {
        grid-template-columns: 1fr;
    }

    .ma-product-list-hero {
        min-height: 500px;
        padding: 54px 0;
    }

    .ma-product-list-hero h1 {
        font-size: 34px;
    }

    .ma-product-list-hero p,
    .ma-product-moq p {
        font-size: 16px;
    }

    .ma-section-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .ma-product-family-card > div,
    .ma-application-card {
        padding: 22px;
    }

    .ma-product-table {
        font-size: 14px;
    }

    .ma-product-table th,
    .ma-product-table td {
        display: block;
        width: 100%;
        padding: 12px;
    }

    .ma-related-product-swiper {
        width: calc(100% - 48px);
        padding-inline: 0;
    }

    .ma-related-carousel .ma-swiper-button {
        width: 36px;
        height: 36px;
    }

    .ma-related-carousel .ma-swiper-button i {
        font-size: 14px;
    }

    .ma-floating-contact {
        top: 54%;
        gap: 7px;
        width: 148px;
    }

    .ma-floating-contact__link {
        width: 48px;
        height: 48px;
        padding: 0 14px;
        font-size: 22px;
    }

    .ma-floating-contact__link:hover,
    .ma-floating-contact__link:focus-visible {
        width: 148px;
    }

    .ma-floating-contact__label {
        font-size: 15px;
    }

    .ma-detail-gallery .ma-swiper-button,
    .ma-case-swiper .ma-swiper-button {
        width: 36px;
        height: 36px;
    }

    .ma-detail-gallery-prev,
    .ma-case-prev {
        left: 10px;
    }

    .ma-detail-gallery-next,
    .ma-case-next {
        right: 10px;
    }

    .ma-about-hero {
        min-height: 360px;
        padding: 48px 16px;
    }

    .ma-about-hero h1 {
        font-size: 30px;
    }

    .ma-about-hero p {
        font-size: 16px;
    }

    .ma-about-intro.ma-counters {
        padding: 42px 0 58px;
    }

    .ma-about-stats,
    .ma-about-choice-grid {
        grid-template-columns: 1fr;
    }

    .ma-about-stat {
        min-height: 112px;
    }

    .ma-about-copy h2,
    .ma-about-choose .ma-section-head h2,
    .ma-about-history .ma-section-head h2,
    .ma-about-certificates .ma-section-head h2 {
        font-size: 30px;
    }

    .ma-about-copy p,
    .ma-about-richtext p,
    .ma-about-richtext li {
        font-size: 16px;
    }

    .ma-about-choice {
        padding: 32px 24px;
    }

    .ma-about-form {
        padding: 24px 18px;
    }

    .ma-strengths__panel {
        padding: 0;
    }

    .ma-strength {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ma-form, .ma-modal__panel {
        padding: 24px 18px;
    }

    .navigation.pagination {
        margin-top: 34px;
    }

    .navigation.pagination .nav-links {
        gap: 8px;
    }

    .navigation.pagination .page-numbers {
        min-width: 38px;
        min-height: 38px;
        padding: 9px 12px;
        font-size: 14px;
    }

    .navigation.pagination .prev,
    .navigation.pagination .next {
        min-width: 82px;
    }

    .ma-modal--video .ma-modal__panel {
        padding: 0;
    }

    .ma-modal--image .ma-modal__panel {
        padding: 0;
    }

    .ma-form__row {
        grid-template-columns: 1fr;
    }

    .ma-testimonial-wrap {
        padding: 10px 0;
    }

    .ma-testimonials {
        padding: 15% 0;
    }

    .ma-testimonials .ma-section-head {
        margin-bottom: 32px;
    }

    .ma-testimonials .ma-section-eyebrow,
    .ma-testimonials .ma-section-head h2 {
        font-size: 24px;
    }

    .ma-testimonial-swiper {
        width: 100%;
    }

    blockquote {
        padding: 18px 0 0;
        font-size: 16px;
    }

    .ma-footer__grid {
        gap: 26px;
        padding-top: 48px;
    }

    .ma-page-hero {
        min-height: 300px;
    }

    .ma-contact-hero {
        padding: 15% 5%;
    }

    .ma-contact-hero p {
        font-size: 16px;
    }

    .ma-contact-main {
        padding: 15% 5% 15%;
    }

    .ma-contact-info {
        padding-bottom: 40px;
    }

    .ma-contact-items {
        grid-template-columns: 1fr;
    }

    .ma-contact-item {
        padding: 24px;
    }

    .ma-contact-form {
        margin-bottom: 0;
        padding: 24px 24px 64px;
    }

    .ma-single-page {
        padding: 0;
    }

    .ma-single-layout {
        width: 100%;
    }

    .ma-single-article {
        padding: 20px 25px 0;
    }

    .ma-single-header h1 {
        font-size: 2em;
    }

    .ma-single-body p,
    .ma-single-body li,
    .ma-single-body td,
    .ma-single-body th {
        font-size: 16px;
    }

    .ma-single-body strong {
        font-size: 17px;
    }

    .ma-toc {
        width: 100%;
    }

    .ma-single-share,
    .ma-single-author,
    .ma-post-nav,
    .ma-related-posts {
        grid-template-columns: 1fr;
    }

    .ma-single-share div {
        justify-content: flex-start;
    }

    .ma-post-nav a:last-child {
        text-align: left;
    }

    .ma-post-nav__sep {
        width: 100%;
        height: 1px;
    }

    .ma-sidebar-card,
    .ma-sidebar-form {
        margin: 0;
        padding: 25px;
    }

    .ma-card-grid,
    .ma-category-grid,
    .ma-product-list-grid,
    .ma-blog-grid,
    .ma-spec-list,
    .ma-download-card {
        grid-template-columns: 1fr;
    }

    .ma-download-card img {
        width: 120px;
    }

    .ma-tab-buttons button {
        width: 100%;
    }
}
